SAP ISM_ACCOUNT_SUBSCREEN_GET_DATA Function Module for IS-M/SD: Copy Liability Account Data from Subscreen
ISM_ACCOUNT_SUBSCREEN_GET_DATA is a standard ism account subscreen get 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: Copy Liability Account Data from 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 account subscreen get data FM, simply by entering the name ISM_ACCOUNT_SUBSCREEN_GET_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: JK13
Program Name: SAPLJK13
Main Program: SAPLJK13
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_ACCOUNT_SUBSCREEN_GET_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_ACCOUNT_SUBSCREEN_GET_DATA'"IS-M/SD: Copy Liability Account Data from Subscreen.
IMPORTING
VBELN_ACCEPTED = "IS-M/SD: Publishing Sales Order
POSNR_ACCEPTED = "Sales Order Item
CYCLENR_ACCEPTED = "IS-M/SD: Renewal Cycle Number
XSIMULATE_PAYMENT = "Checkbox Field
FLG_UPDATE = "
TABLES
XJKREMIND = "Reference Structure for XJKREMIND/YJKREMIND
XKOMVAMO = "Price Determination Communications-Condition Record
XJFREVVAACC = "IS-M/SD: Accr.Table for Issue-Related Rev.Dist.w/Liab.Acct
XJFREVACC = "IS-M/SD: Pl.Cir.f.Rev. - Revenue per Liab.Acct + G/L Account
XJKAPRENEW = "Reference Structure for XJKAPRENEW/YJKAPRENEW
XJKACCADD = "
XJKACCADDT = "
XJKACCAMOPROT = "
XJKACCFIZUO = "IS-M/SD: Reference Structure for XJKACCFIZUO/YJKACCFIZUO
XJKACCOUNT = "Reference Structure for XJKACCOUNT/YJKACCOUNT
XJKAP = "Reference Structure for XJKAP
XJKPA = "Reference Structure for XJKPA
XJKAMOPLAN = "Reference Structure for XJKAMOPLAN/YJKAMOPLAN
XJKEP = "IS-M/SD: Reference Structure for XJKEP
XJKKD = "Reference Structure for XJKKD / YJKKD
XJKPROM = "Reference Structure for XJKPROM
EXPORTING Parameters details for ISM_ACCOUNT_SUBSCREEN_GET_DATA
VBELN_ACCEPTED - IS-M/SD: Publishing Sales Order
Data type: JKAK-VBELNOptional: No
Call by Reference: No ( called with pass by value option)
POSNR_ACCEPTED - Sales Order Item
Data type: JKAP-POSNROptional: No
Call by Reference: No ( called with pass by value option)
CYCLENR_ACCEPTED - IS-M/SD: Renewal Cycle Number
Data type: JKREMIND-CYCLENROptional: No
Call by Reference: No ( called with pass by value option)
XSIMULATE_PAYMENT - Checkbox Field
Data type: XFELDOptional: No
Call by Reference: No ( called with pass by value option)
FLG_UPDATE -
Data type: JPSD_XFELDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISM_ACCOUNT_SUBSCREEN_GET_DATA
XJKREMIND - Reference Structure for XJKREMIND/YJKREMIND
Data type: JKREMINDVBOptional: No
Call by Reference: Yes
XKOMVAMO - Price Determination Communications-Condition Record
Data type: KOMVOptional: No
Call by Reference: Yes
XJFREVVAACC - IS-M/SD: Accr.Table for Issue-Related Rev.Dist.w/Liab.Acct
Data type: JFREVVAACCOptional: No
Call by Reference: Yes
XJFREVACC - IS-M/SD: Pl.Cir.f.Rev. - Revenue per Liab.Acct + G/L Account
Data type: JFREVACCOptional: No
Call by Reference: Yes
XJKAPRENEW - Reference Structure for XJKAPRENEW/YJKAPRENEW
Data type: JKAPRENEWVBOptional: No
Call by Reference: Yes
XJKACCADD -
Data type: JK_JKACCADDVB_GENERICTABOptional: No
Call by Reference: Yes
XJKACCADDT -
Data type: JK_JKACCADDTVB_GENERICTABOptional: No
Call by Reference: Yes
XJKACCAMOPROT -
Data type: JK_JKACCAMOPROTVB_GENERICTABOptional: No
Call by Reference: Yes
XJKACCFIZUO - IS-M/SD: Reference Structure for XJKACCFIZUO/YJKACCFIZUO
Data type: JKACCFIZUOVBOptional: No
Call by Reference: Yes
XJKACCOUNT - Reference Structure for XJKACCOUNT/YJKACCOUNT
Data type: JKACCOUNTVBOptional: No
Call by Reference: Yes
XJKAP - Reference Structure for XJKAP
Data type: JKAPVBOptional: No
Call by Reference: Yes
XJKPA - Reference Structure for XJKPA
Data type: JKPAVBOptional: No
Call by Reference: Yes
XJKAMOPLAN - Reference Structure for XJKAMOPLAN/YJKAMOPLAN
Data type: JKAMOPLANVBOptional: No
Call by Reference: Yes
XJKEP - IS-M/SD: Reference Structure for XJKEP
Data type: JKEPVBOptional: No
Call by Reference: Yes
XJKKD - Reference Structure for XJKKD / YJKKD
Data type: JKKDVBOptional: No
Call by Reference: Yes
XJKPROM - Reference Structure for XJKPROM
Data type: JKPROMVBOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_ACCOUNT_SUBSCREEN_GET_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: | ||||
| lt_xjkremind | TYPE STANDARD TABLE OF JKREMINDVB, " | |||
| lv_vbeln_accepted | TYPE JKAK-VBELN, " | |||
| lt_xkomvamo | TYPE STANDARD TABLE OF KOMV, " | |||
| lt_xjfrevvaacc | TYPE STANDARD TABLE OF JFREVVAACC, " | |||
| lt_xjfrevacc | TYPE STANDARD TABLE OF JFREVACC, " | |||
| lt_xjkaprenew | TYPE STANDARD TABLE OF JKAPRENEWVB, " | |||
| lt_xjkaccadd | TYPE STANDARD TABLE OF JK_JKACCADDVB_GENERICTAB, " | |||
| lt_xjkaccaddt | TYPE STANDARD TABLE OF JK_JKACCADDTVB_GENERICTAB, " | |||
| lt_xjkaccamoprot | TYPE STANDARD TABLE OF JK_JKACCAMOPROTVB_GENERICTAB, " | |||
| lt_xjkaccfizuo | TYPE STANDARD TABLE OF JKACCFIZUOVB, " | |||
| lv_posnr_accepted | TYPE JKAP-POSNR, " | |||
| lt_xjkaccount | TYPE STANDARD TABLE OF JKACCOUNTVB, " | |||
| lv_cyclenr_accepted | TYPE JKREMIND-CYCLENR, " | |||
| lt_xjkap | TYPE STANDARD TABLE OF JKAPVB, " | |||
| lv_xsimulate_payment | TYPE XFELD, " | |||
| lt_xjkpa | TYPE STANDARD TABLE OF JKPAVB, " | |||
| lv_flg_update | TYPE JPSD_XFELD, " | |||
| lt_xjkamoplan | TYPE STANDARD TABLE OF JKAMOPLANVB, " | |||
| lt_xjkep | TYPE STANDARD TABLE OF JKEPVB, " | |||
| lt_xjkkd | TYPE STANDARD TABLE OF JKKDVB, " | |||
| lt_xjkprom | TYPE STANDARD TABLE OF JKPROMVB. " |
|   CALL FUNCTION 'ISM_ACCOUNT_SUBSCREEN_GET_DATA' "IS-M/SD: Copy Liability Account Data from Subscreen |
| IMPORTING | ||
| VBELN_ACCEPTED | = lv_vbeln_accepted | |
| POSNR_ACCEPTED | = lv_posnr_accepted | |
| CYCLENR_ACCEPTED | = lv_cyclenr_accepted | |
| XSIMULATE_PAYMENT | = lv_xsimulate_payment | |
| FLG_UPDATE | = lv_flg_update | |
| TABLES | ||
| XJKREMIND | = lt_xjkremind | |
| XKOMVAMO | = lt_xkomvamo | |
| XJFREVVAACC | = lt_xjfrevvaacc | |
| XJFREVACC | = lt_xjfrevacc | |
| XJKAPRENEW | = lt_xjkaprenew | |
| XJKACCADD | = lt_xjkaccadd | |
| XJKACCADDT | = lt_xjkaccaddt | |
| XJKACCAMOPROT | = lt_xjkaccamoprot | |
| XJKACCFIZUO | = lt_xjkaccfizuo | |
| XJKACCOUNT | = lt_xjkaccount | |
| XJKAP | = lt_xjkap | |
| XJKPA | = lt_xjkpa | |
| XJKAMOPLAN | = lt_xjkamoplan | |
| XJKEP | = lt_xjkep | |
| XJKKD | = lt_xjkkd | |
| XJKPROM | = lt_xjkprom | |
| . " ISM_ACCOUNT_SUBSCREEN_GET_DATA | ||
ABAP code using 7.40 inline data declarations to call FM ISM_ACCOUNT_SUBSCREEN_GET_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.| "SELECT single VBELN FROM JKAK INTO @DATA(ld_vbeln_accepted). | ||||
| "SELECT single POSNR FROM JKAP INTO @DATA(ld_posnr_accepted). | ||||
| "SELECT single CYCLENR FROM JKREMIND INTO @DATA(ld_cyclenr_accepted). | ||||
Search for further information about these or an SAP related objects