SAP JIT01_CHECK_JITHD_WITH_PRODN Function Module for NOTRANSL: Überprüfen, ob Abrufumfang (JITHD) existiert (mit externer Abruf
JIT01_CHECK_JITHD_WITH_PRODN is a standard jit01 check jithd with prodn 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: Überprüfen, ob Abrufumfang (JITHD) existiert (mit externer Abruf 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 jit01 check jithd with prodn FM, simply by entering the name JIT01_CHECK_JITHD_WITH_PRODN into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIT01
Program Name: SAPLJIT01
Main Program: SAPLJIT01
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JIT01_CHECK_JITHD_WITH_PRODN 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 'JIT01_CHECK_JITHD_WITH_PRODN'"NOTRANSL: Überprüfen, ob Abrufumfang (JITHD) existiert (mit externer Abruf.
EXPORTING
CUSTO_IV = "JIT Customer
PRODN_IV = "External Call Number
TABLES
JINUM_ET = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
JITCALL_NOT_EXIST = 1
IMPORTING Parameters details for JIT01_CHECK_JITHD_WITH_PRODN
CUSTO_IV - JIT Customer
Data type: JITHD-CUSTOOptional: No
Call by Reference: No ( called with pass by value option)
PRODN_IV - External Call Number
Data type: JITHD-PRODNOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for JIT01_CHECK_JITHD_WITH_PRODN
JINUM_ET - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: JIT00_JINUM_SET_PTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
JITCALL_NOT_EXIST - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for JIT01_CHECK_JITHD_WITH_PRODN 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_iv | TYPE JITHD-CUSTO, " | |||
| lt_jinum_et | TYPE STANDARD TABLE OF JIT00_JINUM_SET_PT, " | |||
| lv_jitcall_not_exist | TYPE JIT00_JINUM_SET_PT, " | |||
| lv_prodn_iv | TYPE JITHD-PRODN. " |
|   CALL FUNCTION 'JIT01_CHECK_JITHD_WITH_PRODN' "NOTRANSL: Überprüfen, ob Abrufumfang (JITHD) existiert (mit externer Abruf |
| EXPORTING | ||
| CUSTO_IV | = lv_custo_iv | |
| PRODN_IV | = lv_prodn_iv | |
| TABLES | ||
| JINUM_ET | = lt_jinum_et | |
| EXCEPTIONS | ||
| JITCALL_NOT_EXIST = 1 | ||
| . " JIT01_CHECK_JITHD_WITH_PRODN | ||
ABAP code using 7.40 inline data declarations to call FM JIT01_CHECK_JITHD_WITH_PRODN
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 CUSTO FROM JITHD INTO @DATA(ld_custo_iv). | ||||
| "SELECT single PRODN FROM JITHD INTO @DATA(ld_prodn_iv). | ||||
Search for further information about these or an SAP related objects