SAP JIT08_CHECK_JIT_DELIVERY Function Module for NOTRANSL: JIT : Prüfen Lieferungspositionen auf PAB-Bezug









JIT08_CHECK_JIT_DELIVERY is a standard jit08 check jit delivery 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 : Prüfen Lieferungspositionen auf PAB-Bezug 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 check jit delivery FM, simply by entering the name JIT08_CHECK_JIT_DELIVERY 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_CHECK_JIT_DELIVERY 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_CHECK_JIT_DELIVERY'"NOTRANSL: JIT : Prüfen Lieferungspositionen auf PAB-Bezug
IMPORTING
PRIID_EV = "
RNPID_EV = "Type of Reference No. in Delivery Creation with Reference No
DLSLV_EV = "

TABLES
LIPS_IT = "

EXCEPTIONS
NO_JIT_DELIVERY = 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

EXPORTING Parameters details for JIT08_CHECK_JIT_DELIVERY

PRIID_EV -

Data type: JITMA_SB-PRIID
Optional: No
Call by Reference: Yes

RNPID_EV - Type of Reference No. in Delivery Creation with Reference No

Data type: CJIT14-RNPID
Optional: No
Call by Reference: Yes

DLSLV_EV -

Data type: CJIT13-DLSLV
Optional: No
Call by Reference: Yes

TABLES Parameters details for JIT08_CHECK_JIT_DELIVERY

LIPS_IT -

Data type: LIPS
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_JIT_DELIVERY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for JIT08_CHECK_JIT_DELIVERY 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_lips_it  TYPE STANDARD TABLE OF LIPS, "   
lv_priid_ev  TYPE JITMA_SB-PRIID, "   
lv_no_jit_delivery  TYPE JITMA_SB, "   
lv_rnpid_ev  TYPE CJIT14-RNPID, "   
lv_dlslv_ev  TYPE CJIT13-DLSLV. "   

  CALL FUNCTION 'JIT08_CHECK_JIT_DELIVERY'  "NOTRANSL: JIT : Prüfen Lieferungspositionen auf PAB-Bezug
    IMPORTING
         PRIID_EV = lv_priid_ev
         RNPID_EV = lv_rnpid_ev
         DLSLV_EV = lv_dlslv_ev
    TABLES
         LIPS_IT = lt_lips_it
    EXCEPTIONS
        NO_JIT_DELIVERY = 1
. " JIT08_CHECK_JIT_DELIVERY




ABAP code using 7.40 inline data declarations to call FM JIT08_CHECK_JIT_DELIVERY

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 PRIID FROM JITMA_SB INTO @DATA(ld_priid_ev).
 
 
"SELECT single RNPID FROM CJIT14 INTO @DATA(ld_rnpid_ev).
 
"SELECT single DLSLV FROM CJIT13 INTO @DATA(ld_dlslv_ev).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!