SAP ISM_CYCLE_DIFF_AMOUNT_COLLECT Function Module for IS-M/SD: Calculate Difference from Retroactive Accounting per Cycle









ISM_CYCLE_DIFF_AMOUNT_COLLECT is a standard ism cycle diff amount collect 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: Calculate Difference from Retroactive Accounting per Cycle 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 cycle diff amount collect FM, simply by entering the name ISM_CYCLE_DIFF_AMOUNT_COLLECT into the relevant SAP transaction such as SE37 or SE38.

Function Group: JKRR01
Program Name: SAPLJKRR01
Main Program: SAPLJKRR01
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISM_CYCLE_DIFF_AMOUNT_COLLECT 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_CYCLE_DIFF_AMOUNT_COLLECT'"IS-M/SD: Calculate Difference from Retroactive Accounting per Cycle
EXPORTING
VBELN = "Order
POSNR_UR = "
CYCLENR = "Billing Cycle
IJKACCOUNT = "Liability Account
EXPDATE = "Expiration Date
STARTDATE = "Current Date of Application Server

IMPORTING
DIFF_AMOUNT = "Difference Amount

TABLES
IJKAP = "Order Items
IJKEP = "
IJKKD = "
IJKAMOPLAN = "
IJKPAZ = "Delivery Via.Assignments

EXCEPTIONS
NO_AMORATE_FOUND = 1 NO_VA_FOUND = 2 ERROR = 3
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLJKRR01_001 Determine Due Date

IMPORTING Parameters details for ISM_CYCLE_DIFF_AMOUNT_COLLECT

VBELN - Order

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

POSNR_UR -

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

CYCLENR - Billing Cycle

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

IJKACCOUNT - Liability Account

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

EXPDATE - Expiration Date

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

STARTDATE - Current Date of Application Server

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

EXPORTING Parameters details for ISM_CYCLE_DIFF_AMOUNT_COLLECT

DIFF_AMOUNT - Difference Amount

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

TABLES Parameters details for ISM_CYCLE_DIFF_AMOUNT_COLLECT

IJKAP - Order Items

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

IJKEP -

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

IJKKD -

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

IJKAMOPLAN -

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

IJKPAZ - Delivery Via.Assignments

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

EXCEPTIONS details

NO_AMORATE_FOUND -

Data type:
Optional: No
Call by Reference: Yes

NO_VA_FOUND -

Data type:
Optional: No
Call by Reference: Yes

ERROR - Errors have occurred

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISM_CYCLE_DIFF_AMOUNT_COLLECT 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_ijkap  TYPE STANDARD TABLE OF JKAPVB, "   
lv_vbeln  TYPE JKACCOUNT-VBELN, "   
lv_diff_amount  TYPE JKACCOUNT-DIFFBETR, "   
lv_no_amorate_found  TYPE JKACCOUNT, "   
lt_ijkep  TYPE STANDARD TABLE OF JKEPVB, "   
lv_posnr_ur  TYPE JKACCOUNT-POSNR_UR, "   
lv_no_va_found  TYPE JKACCOUNT, "   
lv_error  TYPE JKACCOUNT, "   
lt_ijkkd  TYPE STANDARD TABLE OF JKKDVB, "   
lv_cyclenr  TYPE JKACCOUNT-CYCLENR, "   
lv_ijkaccount  TYPE JKACCOUNTVB, "   
lt_ijkamoplan  TYPE STANDARD TABLE OF JKAMOPLANVB, "   
lt_ijkpaz  TYPE STANDARD TABLE OF JKPAZVB, "   
lv_expdate  TYPE JKACCOUNT-EXPDATE, "   
lv_startdate  TYPE SYDATUM. "   

  CALL FUNCTION 'ISM_CYCLE_DIFF_AMOUNT_COLLECT'  "IS-M/SD: Calculate Difference from Retroactive Accounting per Cycle
    EXPORTING
         VBELN = lv_vbeln
         POSNR_UR = lv_posnr_ur
         CYCLENR = lv_cyclenr
         IJKACCOUNT = lv_ijkaccount
         EXPDATE = lv_expdate
         STARTDATE = lv_startdate
    IMPORTING
         DIFF_AMOUNT = lv_diff_amount
    TABLES
         IJKAP = lt_ijkap
         IJKEP = lt_ijkep
         IJKKD = lt_ijkkd
         IJKAMOPLAN = lt_ijkamoplan
         IJKPAZ = lt_ijkpaz
    EXCEPTIONS
        NO_AMORATE_FOUND = 1
        NO_VA_FOUND = 2
        ERROR = 3
. " ISM_CYCLE_DIFF_AMOUNT_COLLECT




ABAP code using 7.40 inline data declarations to call FM ISM_CYCLE_DIFF_AMOUNT_COLLECT

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 VBELN FROM JKACCOUNT INTO @DATA(ld_vbeln).
 
"SELECT single DIFFBETR FROM JKACCOUNT INTO @DATA(ld_diff_amount).
 
 
 
"SELECT single POSNR_UR FROM JKACCOUNT INTO @DATA(ld_posnr_ur).
 
 
 
 
"SELECT single CYCLENR FROM JKACCOUNT INTO @DATA(ld_cyclenr).
 
 
 
 
"SELECT single EXPDATE FROM JKACCOUNT INTO @DATA(ld_expdate).
 
 


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!