SAP JIT08_GET_JITCALL_DATA Function Module for NOTRANSL: JIT : Ermittlung der Abrufdaten für Internet-Szenario
JIT08_GET_JITCALL_DATA is a standard jit08 get jitcall 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 NOTRANSL: JIT : Ermittlung der Abrufdaten für Internet-Szenario 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 jit08 get jitcall data FM, simply by entering the name JIT08_GET_JITCALL_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIT08
Program Name: SAPLJIT08
Main Program: SAPLJIT08
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function JIT08_GET_JITCALL_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 'JIT08_GET_JITCALL_DATA'"NOTRANSL: JIT : Ermittlung der Abrufdaten für Internet-Szenario.
EXPORTING
JIT_DATA_SEL_IS = "
* PRODN_IV = "
* SEQNR_IV = "External Sequence Number
TABLES
JIT_DATA_HEADER_ET = "
JIT_DATA_POSITIONS_ET = "
JIT_MATERIAL_IT = "
EXCEPTIONS
NO_JITCALL_FOUND = 1
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_SAPLJIT08_001 SumJC: Enter Reference Number in EDI Message
EXIT_SAPLJIT08_002 SumJC: Maintain Reference No. in EDI Message E1EDL52
IMPORTING Parameters details for JIT08_GET_JITCALL_DATA
JIT_DATA_SEL_IS -
Data type: JIT_DATA_SELOptional: No
Call by Reference: No ( called with pass by value option)
PRODN_IV -
Data type: JIT_PRODNOptional: Yes
Call by Reference: No ( called with pass by value option)
SEQNR_IV - External Sequence Number
Data type: JIT_SEQNROptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for JIT08_GET_JITCALL_DATA
JIT_DATA_HEADER_ET -
Data type: JIT_DATA_HEADER_TTOptional: No
Call by Reference: Yes
JIT_DATA_POSITIONS_ET -
Data type: JIT_DATA_POSITIONS_TTOptional: No
Call by Reference: Yes
JIT_MATERIAL_IT -
Data type: JIT_MAT_SEL_TTOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_JITCALL_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JIT08_GET_JITCALL_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_jit_data_sel_is | TYPE JIT_DATA_SEL, " | |||
| lv_no_jitcall_found | TYPE JIT_DATA_SEL, " | |||
| lt_jit_data_header_et | TYPE STANDARD TABLE OF JIT_DATA_HEADER_TT, " | |||
| lv_prodn_iv | TYPE JIT_PRODN, " | |||
| lt_jit_data_positions_et | TYPE STANDARD TABLE OF JIT_DATA_POSITIONS_TT, " | |||
| lv_seqnr_iv | TYPE JIT_SEQNR, " | |||
| lt_jit_material_it | TYPE STANDARD TABLE OF JIT_MAT_SEL_TT. " |
|   CALL FUNCTION 'JIT08_GET_JITCALL_DATA' "NOTRANSL: JIT : Ermittlung der Abrufdaten für Internet-Szenario |
| EXPORTING | ||
| JIT_DATA_SEL_IS | = lv_jit_data_sel_is | |
| PRODN_IV | = lv_prodn_iv | |
| SEQNR_IV | = lv_seqnr_iv | |
| TABLES | ||
| JIT_DATA_HEADER_ET | = lt_jit_data_header_et | |
| JIT_DATA_POSITIONS_ET | = lt_jit_data_positions_et | |
| JIT_MATERIAL_IT | = lt_jit_material_it | |
| EXCEPTIONS | ||
| NO_JITCALL_FOUND = 1 | ||
| . " JIT08_GET_JITCALL_DATA | ||
ABAP code using 7.40 inline data declarations to call FM JIT08_GET_JITCALL_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