SAP ISP_JITSTAT_SAVE_BY_REMISSION Function Module for IS-M/SD: Update IVW Statistics for Returns
ISP_JITSTAT_SAVE_BY_REMISSION is a standard isp jitstat save by remission 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: Update IVW Statistics for Returns 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 isp jitstat save by remission FM, simply by entering the name ISP_JITSTAT_SAVE_BY_REMISSION into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIU6
Program Name: SAPLJIU6
Main Program: SAPLJIU6
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function ISP_JITSTAT_SAVE_BY_REMISSION 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 'ISP_JITSTAT_SAVE_BY_REMISSION'"IS-M/SD: Update IVW Statistics for Returns.
EXPORTING
BJKAK = "
XJKAK = "
XRJK0500 = "
YJKAK = "
TABLES
BJKAP = "
XJKAP = "
XJKEP = "
YJKAP = "
YJKEP = "
BJKKD = "
IMPORTING Parameters details for ISP_JITSTAT_SAVE_BY_REMISSION
BJKAK -
Data type: JKAKOptional: No
Call by Reference: No ( called with pass by value option)
XJKAK -
Data type: JKAKVBOptional: No
Call by Reference: No ( called with pass by value option)
XRJK0500 -
Data type: RJK0500Optional: No
Call by Reference: No ( called with pass by value option)
YJKAK -
Data type: JKAKOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_JITSTAT_SAVE_BY_REMISSION
BJKAP -
Data type: JKAPOptional: No
Call by Reference: No ( called with pass by value option)
XJKAP -
Data type: JKAPVBOptional: No
Call by Reference: No ( called with pass by value option)
XJKEP -
Data type: JKEPVBOptional: No
Call by Reference: No ( called with pass by value option)
YJKAP -
Data type: JKAPOptional: No
Call by Reference: No ( called with pass by value option)
YJKEP -
Data type: JKEPOptional: No
Call by Reference: No ( called with pass by value option)
BJKKD -
Data type: JKKDOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_JITSTAT_SAVE_BY_REMISSION 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_bjkak | TYPE JKAK, " | |||
| lt_bjkap | TYPE STANDARD TABLE OF JKAP, " | |||
| lv_xjkak | TYPE JKAKVB, " | |||
| lt_xjkap | TYPE STANDARD TABLE OF JKAPVB, " | |||
| lt_xjkep | TYPE STANDARD TABLE OF JKEPVB, " | |||
| lv_xrjk0500 | TYPE RJK0500, " | |||
| lv_yjkak | TYPE JKAK, " | |||
| lt_yjkap | TYPE STANDARD TABLE OF JKAP, " | |||
| lt_yjkep | TYPE STANDARD TABLE OF JKEP, " | |||
| lt_bjkkd | TYPE STANDARD TABLE OF JKKD. " |
|   CALL FUNCTION 'ISP_JITSTAT_SAVE_BY_REMISSION' "IS-M/SD: Update IVW Statistics for Returns |
| EXPORTING | ||
| BJKAK | = lv_bjkak | |
| XJKAK | = lv_xjkak | |
| XRJK0500 | = lv_xrjk0500 | |
| YJKAK | = lv_yjkak | |
| TABLES | ||
| BJKAP | = lt_bjkap | |
| XJKAP | = lt_xjkap | |
| XJKEP | = lt_xjkep | |
| YJKAP | = lt_yjkap | |
| YJKEP | = lt_yjkep | |
| BJKKD | = lt_bjkkd | |
| . " ISP_JITSTAT_SAVE_BY_REMISSION | ||
ABAP code using 7.40 inline data declarations to call FM ISP_JITSTAT_SAVE_BY_REMISSION
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