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

Function ISM_PROM_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_PROM_SUBSCREEN_GET_DATA'"IS-M/SD: Copy Introduction Data from LJKPROM.
IMPORTING
E_JKPROM = "Sales Order: Introduction Data
E_JKAP = "Sales Order - Item Data
E_RJ45A = "
TABLES
T_XJKPA = "
T_XJKPROM = "
T_XJKCOMM = "
T_XJKGIFT = "
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_SAPLJKPROM_001 IS-M/SD: Introduction Data Transfer to Customer Subscreen 0200
EXIT_SAPLJKPROM_002 IS-M/SD: Introductions, Data Transfer from Cust.Subscreen 0200
EXIT_SAPLJKPROM_003 IS-M/SD: Introductions - Modify Gifts
EXIT_SAPLJKPROM_004 IS-M/SD: Introduction - Modify Commission
EXPORTING Parameters details for ISM_PROM_SUBSCREEN_GET_DATA
E_JKPROM - Sales Order: Introduction Data
Data type: JKPROMOptional: No
Call by Reference: No ( called with pass by value option)
E_JKAP - Sales Order - Item Data
Data type: JKAPOptional: No
Call by Reference: No ( called with pass by value option)
E_RJ45A -
Data type: RJ45AOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISM_PROM_SUBSCREEN_GET_DATA
T_XJKPA -
Data type: JKPAVBOptional: No
Call by Reference: Yes
T_XJKPROM -
Data type: JKPROMVBOptional: No
Call by Reference: Yes
T_XJKCOMM -
Data type: JKCOMMVBOptional: No
Call by Reference: Yes
T_XJKGIFT -
Data type: JKGIFTVBOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_PROM_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_t_xjkpa | TYPE STANDARD TABLE OF JKPAVB, " | |||
| lv_e_jkprom | TYPE JKPROM, " | |||
| lv_e_jkap | TYPE JKAP, " | |||
| lt_t_xjkprom | TYPE STANDARD TABLE OF JKPROMVB, " | |||
| lv_e_rj45a | TYPE RJ45A, " | |||
| lt_t_xjkcomm | TYPE STANDARD TABLE OF JKCOMMVB, " | |||
| lt_t_xjkgift | TYPE STANDARD TABLE OF JKGIFTVB. " |
|   CALL FUNCTION 'ISM_PROM_SUBSCREEN_GET_DATA' "IS-M/SD: Copy Introduction Data from LJKPROM |
| IMPORTING | ||
| E_JKPROM | = lv_e_jkprom | |
| E_JKAP | = lv_e_jkap | |
| E_RJ45A | = lv_e_rj45a | |
| TABLES | ||
| T_XJKPA | = lt_t_xjkpa | |
| T_XJKPROM | = lt_t_xjkprom | |
| T_XJKCOMM | = lt_t_xjkcomm | |
| T_XJKGIFT | = lt_t_xjkgift | |
| . " ISM_PROM_SUBSCREEN_GET_DATA | ||
ABAP code using 7.40 inline data declarations to call FM ISM_PROM_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.Search for further information about these or an SAP related objects