SAP ISM_BW_2LIS11VAITM_APPEND Function Module for BW Extraction Plug-in BTE: Fill Order Items with IS-M Fields









ISM_BW_2LIS11VAITM_APPEND is a standard ism bw 2lis11vaitm append SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BW Extraction Plug-in BTE: Fill Order Items with IS-M Fields processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for ism bw 2lis11vaitm append FM, simply by entering the name ISM_BW_2LIS11VAITM_APPEND into the relevant SAP transaction such as SE37 or SE38.

Function Group: JSBW_ORDER_APPE
Program Name: SAPLJSBW_ORDER_APPE
Main Program: SAPLJSBW_ORDER_APPE
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISM_BW_2LIS11VAITM_APPEND pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'ISM_BW_2LIS11VAITM_APPEND'"BW Extraction Plug-in BTE: Fill Order Items with IS-M Fields
EXPORTING
I_DATASOURCE = "Name of Basic Characteristic
I_UPDMODE = "Transfer Mode (Full, Delta)

TABLES
I_T_SELECT = "Requested Selection Conditions
I_T_FIELDS = "Requested Fields
C_T_DATA = "Transferred Data
* C_T_MESSAGES = "Error Log from the BTE Exit Function
.



IMPORTING Parameters details for ISM_BW_2LIS11VAITM_APPEND

I_DATASOURCE - Name of Basic Characteristic

Data type: SBIWA_S_INTERFACE-ISOURCE
Optional: No
Call by Reference: No ( called with pass by value option)

I_UPDMODE - Transfer Mode (Full, Delta)

Data type: SBIWA_S_INTERFACE-UPDMODE
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISM_BW_2LIS11VAITM_APPEND

I_T_SELECT - Requested Selection Conditions

Data type: SBIWA_T_SELECT
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_FIELDS - Requested Fields

Data type: SBIWA_T_FIELDS
Optional: No
Call by Reference: No ( called with pass by value option)

C_T_DATA - Transferred Data

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

C_T_MESSAGES - Error Log from the BTE Exit Function

Data type: BALMI
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISM_BW_2LIS11VAITM_APPEND Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lt_i_t_select  TYPE STANDARD TABLE OF SBIWA_T_SELECT, "   
lv_i_datasource  TYPE SBIWA_S_INTERFACE-ISOURCE, "   
lv_i_updmode  TYPE SBIWA_S_INTERFACE-UPDMODE, "   
lt_i_t_fields  TYPE STANDARD TABLE OF SBIWA_T_FIELDS, "   
lt_c_t_data  TYPE STANDARD TABLE OF SBIWA_T_FIELDS, "   
lt_c_t_messages  TYPE STANDARD TABLE OF BALMI. "   

  CALL FUNCTION 'ISM_BW_2LIS11VAITM_APPEND'  "BW Extraction Plug-in BTE: Fill Order Items with IS-M Fields
    EXPORTING
         I_DATASOURCE = lv_i_datasource
         I_UPDMODE = lv_i_updmode
    TABLES
         I_T_SELECT = lt_i_t_select
         I_T_FIELDS = lt_i_t_fields
         C_T_DATA = lt_c_t_data
         C_T_MESSAGES = lt_c_t_messages
. " ISM_BW_2LIS11VAITM_APPEND




ABAP code using 7.40 inline data declarations to call FM ISM_BW_2LIS11VAITM_APPEND

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
"SELECT single ISOURCE FROM SBIWA_S_INTERFACE INTO @DATA(ld_i_datasource).
 
"SELECT single UPDMODE FROM SBIWA_S_INTERFACE INTO @DATA(ld_i_updmode).
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!