SAP ISM_BW_SD_RETURN_DELTA Function Module for IS-M/SD: Returns Extraction (Delta Update)
ISM_BW_SD_RETURN_DELTA is a standard ism bw sd return delta SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Returns Extraction (Delta Update) 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 sd return delta FM, simply by entering the name ISM_BW_SD_RETURN_DELTA into the relevant SAP transaction such as SE37 or SE38.
Function Group: JSBW_MSD_RETURN
Program Name: SAPLJSBW_MSD_RETURN
Main Program: SAPLJSBW_MSD_RETURN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function ISM_BW_SD_RETURN_DELTA 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_SD_RETURN_DELTA'"IS-M/SD: Returns Extraction (Delta Update).
EXPORTING
XJKAK = "Order Header New
YJKAK = "Order Header Old
TABLES
XJKAP = "
XJKEP = "
XJKKD = "
XJKPA = "
YJKAP = "
YJKEP = "
YJKKD = "
YJKPA = "
* XJFFA = "Document Flow
IMPORTING Parameters details for ISM_BW_SD_RETURN_DELTA
XJKAK - Order Header New
Data type: JKAKVBOptional: No
Call by Reference: No ( called with pass by value option)
YJKAK - Order Header Old
Data type: JKAKOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISM_BW_SD_RETURN_DELTA
XJKAP -
Data type: JKAPVBOptional: No
Call by Reference: Yes
XJKEP -
Data type: JKEPVBOptional: No
Call by Reference: Yes
XJKKD -
Data type: JKKDVBOptional: No
Call by Reference: Yes
XJKPA -
Data type: JKPAVBOptional: No
Call by Reference: Yes
YJKAP -
Data type: JKAPOptional: No
Call by Reference: Yes
YJKEP -
Data type: JKEPOptional: No
Call by Reference: Yes
YJKKD -
Data type: JKKDOptional: No
Call by Reference: Yes
YJKPA -
Data type: JKPAOptional: No
Call by Reference: Yes
XJFFA - Document Flow
Data type: JFFAVBOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISM_BW_SD_RETURN_DELTA 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: | ||||
| lv_xjkak | TYPE JKAKVB, " | |||
| lt_xjkap | TYPE STANDARD TABLE OF JKAPVB, " | |||
| lt_xjkep | TYPE STANDARD TABLE OF JKEPVB, " | |||
| lv_yjkak | TYPE JKAK, " | |||
| lt_xjkkd | TYPE STANDARD TABLE OF JKKDVB, " | |||
| lt_xjkpa | TYPE STANDARD TABLE OF JKPAVB, " | |||
| lt_yjkap | TYPE STANDARD TABLE OF JKAP, " | |||
| lt_yjkep | TYPE STANDARD TABLE OF JKEP, " | |||
| lt_yjkkd | TYPE STANDARD TABLE OF JKKD, " | |||
| lt_yjkpa | TYPE STANDARD TABLE OF JKPA, " | |||
| lt_xjffa | TYPE STANDARD TABLE OF JFFAVB. " |
|   CALL FUNCTION 'ISM_BW_SD_RETURN_DELTA' "IS-M/SD: Returns Extraction (Delta Update) |
| EXPORTING | ||
| XJKAK | = lv_xjkak | |
| YJKAK | = lv_yjkak | |
| TABLES | ||
| XJKAP | = lt_xjkap | |
| XJKEP | = lt_xjkep | |
| XJKKD | = lt_xjkkd | |
| XJKPA | = lt_xjkpa | |
| YJKAP | = lt_yjkap | |
| YJKEP | = lt_yjkep | |
| YJKKD | = lt_yjkkd | |
| YJKPA | = lt_yjkpa | |
| XJFFA | = lt_xjffa | |
| . " ISM_BW_SD_RETURN_DELTA | ||
ABAP code using 7.40 inline data declarations to call FM ISM_BW_SD_RETURN_DELTA
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.Search for further information about these or an SAP related objects