SAP ISM_LIABILITY_ACCOUNT_SET_DATA Function Module for IS-M/SD: Transfer Liability Account Data to Subscreen









ISM_LIABILITY_ACCOUNT_SET_DATA is a standard ism liability account set data 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: Transfer Liability Account Data to Subscreen 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 liability account set data FM, simply by entering the name ISM_LIABILITY_ACCOUNT_SET_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function ISM_LIABILITY_ACCOUNT_SET_DATA 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_LIABILITY_ACCOUNT_SET_DATA'"IS-M/SD: Transfer Liability Account Data to Subscreen
EXPORTING
I_JKAK = "Order Header
I_POSNR_UR = "Original Item in Publishing Sales Order
* I_CYCLENR = "
I_XJKACCOUNT = "Liability Accounts
I_XJKACCADD = "
I_XJKACCADDT = "
I_XJKREMIND = "
* I_XJKACCAMOPROT = "Amortization Log
* I_DISPLAY_ONLY = "

EXCEPTIONS
NO_RENEWAL_CYCLE = 1
.



IMPORTING Parameters details for ISM_LIABILITY_ACCOUNT_SET_DATA

I_JKAK - Order Header

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

I_POSNR_UR - Original Item in Publishing Sales Order

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

I_CYCLENR -

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

I_XJKACCOUNT - Liability Accounts

Data type: JK_JKACCOUNTVB_GENERICTAB
Optional: No
Call by Reference: Yes

I_XJKACCADD -

Data type: JK_JKACCADDVB_GENERICTAB
Optional: No
Call by Reference: Yes

I_XJKACCADDT -

Data type: JK_JKACCADDTVB_GENERICTAB
Optional: No
Call by Reference: Yes

I_XJKREMIND -

Data type: JK_JKREMINDVB_GENERICTAB
Optional: No
Call by Reference: Yes

I_XJKACCAMOPROT - Amortization Log

Data type: JK_JKACCAMOPROTVB_GENERICTAB
Optional: Yes
Call by Reference: Yes

I_DISPLAY_ONLY -

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

EXCEPTIONS details

NO_RENEWAL_CYCLE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISM_LIABILITY_ACCOUNT_SET_DATA 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_i_jkak  TYPE JK_JKAK, "   
lv_no_renewal_cycle  TYPE JK_JKAK, "   
lv_i_posnr_ur  TYPE APNR_UR, "   
lv_i_cyclenr  TYPE CYCLENR, "   
lv_i_xjkaccount  TYPE JK_JKACCOUNTVB_GENERICTAB, "   
lv_i_xjkaccadd  TYPE JK_JKACCADDVB_GENERICTAB, "   
lv_i_xjkaccaddt  TYPE JK_JKACCADDTVB_GENERICTAB, "   
lv_i_xjkremind  TYPE JK_JKREMINDVB_GENERICTAB, "   
lv_i_xjkaccamoprot  TYPE JK_JKACCAMOPROTVB_GENERICTAB, "   
lv_i_display_only  TYPE XFELD. "   

  CALL FUNCTION 'ISM_LIABILITY_ACCOUNT_SET_DATA'  "IS-M/SD: Transfer Liability Account Data to Subscreen
    EXPORTING
         I_JKAK = lv_i_jkak
         I_POSNR_UR = lv_i_posnr_ur
         I_CYCLENR = lv_i_cyclenr
         I_XJKACCOUNT = lv_i_xjkaccount
         I_XJKACCADD = lv_i_xjkaccadd
         I_XJKACCADDT = lv_i_xjkaccaddt
         I_XJKREMIND = lv_i_xjkremind
         I_XJKACCAMOPROT = lv_i_xjkaccamoprot
         I_DISPLAY_ONLY = lv_i_display_only
    EXCEPTIONS
        NO_RENEWAL_CYCLE = 1
. " ISM_LIABILITY_ACCOUNT_SET_DATA




ABAP code using 7.40 inline data declarations to call FM ISM_LIABILITY_ACCOUNT_SET_DATA

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



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!