SAP JITOUT08_GET_INTERNET_DATA Function Module for NOTRANSL: Lesen der JIT-Daten für das Internetszenario
JITOUT08_GET_INTERNET_DATA is a standard jitout08 get internet 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: Lesen der JIT-Daten für das Internetszenario 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 jitout08 get internet data FM, simply by entering the name JITOUT08_GET_INTERNET_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT08
Program Name: SAPLJITOUT08
Main Program: SAPLJITOUT08
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT08_GET_INTERNET_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 'JITOUT08_GET_INTERNET_DATA'"NOTRANSL: Lesen der JIT-Daten für das Internetszenario.
EXPORTING
JIT_DATA_SEL_IS = "Data Selection for Internet Scenarios
* PRODN_IV = "External Call Number
* SEQNR_IV = "External Sequence Number
* OUTPO_IV = "Components Group Number JIT Outbound
* JCTYP_IV = "Call Type JIT Outbound
* JIT_MATERIAL_IT = "Material Selection for Internet Scenario
* FAT_LEAN_CHOICE_IV = ' ' "Single-Character Flag
IMPORTING
JIT_DATA_HEADER_ET = "Table Type for Header Data for JIT Internet Scenario
JIT_DATA_POSITIONS_ET = "Table Type for the Item Data of the JIT Internet Scenario
ISI_SUMJIT_DATA_ET = "Table type for summarised JIT calls
EXCEPTIONS
NO_JITCALL_FOUND = 1
IMPORTING Parameters details for JITOUT08_GET_INTERNET_DATA
JIT_DATA_SEL_IS - Data Selection for Internet Scenarios
Data type: JIT_DATA_SELOptional: No
Call by Reference: No ( called with pass by value option)
PRODN_IV - External Call Number
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)
OUTPO_IV - Components Group Number JIT Outbound
Data type: JITO_OUTPOOptional: Yes
Call by Reference: No ( called with pass by value option)
JCTYP_IV - Call Type JIT Outbound
Data type: JITO_JCTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
JIT_MATERIAL_IT - Material Selection for Internet Scenario
Data type: JIT_MAT_SEL_TTOptional: Yes
Call by Reference: No ( called with pass by value option)
FAT_LEAN_CHOICE_IV - Single-Character Flag
Data type: CHAR1Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for JITOUT08_GET_INTERNET_DATA
JIT_DATA_HEADER_ET - Table Type for Header Data for JIT Internet Scenario
Data type: JIT_DATA_HEADER_TTOptional: No
Call by Reference: No ( called with pass by value option)
JIT_DATA_POSITIONS_ET - Table Type for the Item Data of the JIT Internet Scenario
Data type: JIT_DATA_POSITIONS_TTOptional: No
Call by Reference: No ( called with pass by value option)
ISI_SUMJIT_DATA_ET - Table type for summarised JIT calls
Data type: ISI_SUMJIT_DATA_TTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_JITCALL_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JITOUT08_GET_INTERNET_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, " | |||
| lv_jit_data_header_et | TYPE JIT_DATA_HEADER_TT, " | |||
| lv_prodn_iv | TYPE JIT_PRODN, " | |||
| lv_jit_data_positions_et | TYPE JIT_DATA_POSITIONS_TT, " | |||
| lv_seqnr_iv | TYPE JIT_SEQNR, " | |||
| lv_isi_sumjit_data_et | TYPE ISI_SUMJIT_DATA_TT, " | |||
| lv_outpo_iv | TYPE JITO_OUTPO, " | |||
| lv_jctyp_iv | TYPE JITO_JCTYP, " | |||
| lv_jit_material_it | TYPE JIT_MAT_SEL_TT, " | |||
| lv_fat_lean_choice_iv | TYPE CHAR1. " ' ' |
|   CALL FUNCTION 'JITOUT08_GET_INTERNET_DATA' "NOTRANSL: Lesen der JIT-Daten für das Internetszenario |
| EXPORTING | ||
| JIT_DATA_SEL_IS | = lv_jit_data_sel_is | |
| PRODN_IV | = lv_prodn_iv | |
| SEQNR_IV | = lv_seqnr_iv | |
| OUTPO_IV | = lv_outpo_iv | |
| JCTYP_IV | = lv_jctyp_iv | |
| JIT_MATERIAL_IT | = lv_jit_material_it | |
| FAT_LEAN_CHOICE_IV | = lv_fat_lean_choice_iv | |
| IMPORTING | ||
| JIT_DATA_HEADER_ET | = lv_jit_data_header_et | |
| JIT_DATA_POSITIONS_ET | = lv_jit_data_positions_et | |
| ISI_SUMJIT_DATA_ET | = lv_isi_sumjit_data_et | |
| EXCEPTIONS | ||
| NO_JITCALL_FOUND = 1 | ||
| . " JITOUT08_GET_INTERNET_DATA | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT08_GET_INTERNET_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.| DATA(ld_fat_lean_choice_iv) | = ' '. | |||
Search for further information about these or an SAP related objects