SAP JIT08_DETERMINE_JITCALL_QUANT Function Module for NOTRANSL: Bestimmen der Anzahl von JIT-Abrufen
JIT08_DETERMINE_JITCALL_QUANT is a standard jit08 determine jitcall quant 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: Bestimmen der Anzahl von JIT-Abrufen 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 determine jitcall quant FM, simply by entering the name JIT08_DETERMINE_JITCALL_QUANT into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIT08
Program Name: SAPLJIT08
Main Program: SAPLJIT08
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JIT08_DETERMINE_JITCALL_QUANT 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_DETERMINE_JITCALL_QUANT'"NOTRANSL: Bestimmen der Anzahl von JIT-Abrufen.
EXPORTING
* CUSTO_IT = "
* ANLIE_IT = "
* INTST_IT = "
* INTST_IV = "
* ABLAD_IV = "
TABLES
JC_QUANTITY_ET = "Number of JIT Calls or Components Groups
* JIT_HD_IT_ET = "Interlinking JITHD and JITIT
EXCEPTIONS
NO_RECORD_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_DETERMINE_JITCALL_QUANT
CUSTO_IT -
Data type: JIT00_SEL_JITHD_CUSTO_LTOptional: Yes
Call by Reference: No ( called with pass by value option)
ANLIE_IT -
Data type: JIT00_SEL_JITIT_ANLIE_LTOptional: Yes
Call by Reference: No ( called with pass by value option)
INTST_IT -
Data type: JIT00_SEL_JITIT_INTST_LTOptional: Yes
Call by Reference: No ( called with pass by value option)
INTST_IV -
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
ABLAD_IV -
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for JIT08_DETERMINE_JITCALL_QUANT
JC_QUANTITY_ET - Number of JIT Calls or Components Groups
Data type: JIT_CALL_QUANTITYOptional: No
Call by Reference: Yes
JIT_HD_IT_ET - Interlinking JITHD and JITIT
Data type: JIT_HD_ITOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_RECORD_FOUND - No Entry Found
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for JIT08_DETERMINE_JITCALL_QUANT 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_custo_it | TYPE JIT00_SEL_JITHD_CUSTO_LT, " | |||
| lt_jc_quantity_et | TYPE STANDARD TABLE OF JIT_CALL_QUANTITY, " | |||
| lv_no_record_found | TYPE JIT_CALL_QUANTITY, " | |||
| lv_anlie_it | TYPE JIT00_SEL_JITIT_ANLIE_LT, " | |||
| lt_jit_hd_it_et | TYPE STANDARD TABLE OF JIT_HD_IT, " | |||
| lv_intst_it | TYPE JIT00_SEL_JITIT_INTST_LT, " | |||
| lv_intst_iv | TYPE C, " | |||
| lv_ablad_iv | TYPE C. " |
|   CALL FUNCTION 'JIT08_DETERMINE_JITCALL_QUANT' "NOTRANSL: Bestimmen der Anzahl von JIT-Abrufen |
| EXPORTING | ||
| CUSTO_IT | = lv_custo_it | |
| ANLIE_IT | = lv_anlie_it | |
| INTST_IT | = lv_intst_it | |
| INTST_IV | = lv_intst_iv | |
| ABLAD_IV | = lv_ablad_iv | |
| TABLES | ||
| JC_QUANTITY_ET | = lt_jc_quantity_et | |
| JIT_HD_IT_ET | = lt_jit_hd_it_et | |
| EXCEPTIONS | ||
| NO_RECORD_FOUND = 1 | ||
| . " JIT08_DETERMINE_JITCALL_QUANT | ||
ABAP code using 7.40 inline data declarations to call FM JIT08_DETERMINE_JITCALL_QUANT
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