SAP JIT01_SELECT_JITHD_IT_CO Function Module for NOTRANSL: DON: Selektives lesen von JITHD, JITIT und JITCO via inner join









JIT01_SELECT_JITHD_IT_CO is a standard jit01 select jithd it co 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: DON: Selektives lesen von JITHD, JITIT und JITCO via inner join 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 select jithd it co FM, simply by entering the name JIT01_SELECT_JITHD_IT_CO 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_SELECT_JITHD_IT_CO 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_SELECT_JITHD_IT_CO'"NOTRANSL: DON: Selektives lesen von JITHD, JITIT und JITCO via inner join
EXPORTING
* DELIVERY_IV = "Delivery Created
* VEHID_RANGE_IT = "Selection options for additional information 2
* SSPEZ_RANGE_IT = "Selection options for additional information 2
* GRPIN_RANGE_IT = "Selection options for grouping info
* GRIND_RANGE_IT = "Selection options for grouping index
* VBELN_VL_RANGE_IT = "Ranges table in delivery (SeqJC)
* SELECT_DELI_ONLY_IV = "Delivery Created
* ABTYP_RANGE_IT = "Table Type for Ranges Table using Call Type
* CUSTO_RANGE_IT = "Table Type for Ranges Table for JIT Customer
* ANLIE_RANGE_IT = "Table Type f.Ranges Table using Comp.Group Type (Delivery)
* MATID_RANGE_IT = "Table Type for Ranges Table using JIT Material
* PDATE_RANGE_IT = "Table Type for Ranges Table using Planned Shipping Time
* PRODN_RANGE_IT = "SumJC: Table w.Selection Options f. External Call No.(SumJC)
* INTST_RANGE_IT = "Range Table for Internal Processing Status
* VETYP_RANGE_IT = "Selection options for additional information 1

TABLES
* JIT_HD_IT_CO_ET = "Interlinking JITHD and JITIT
* CNTRL_INTST_IT = "
* VBELN_VL_SET_IT = "

EXCEPTIONS
NO_ENTRIES_FOUND = 1
.



IMPORTING Parameters details for JIT01_SELECT_JITHD_IT_CO

DELIVERY_IV - Delivery Created

Data type: JITIT-DCREA
Optional: Yes
Call by Reference: No ( called with pass by value option)

VEHID_RANGE_IT - Selection options for additional information 2

Data type: JIT_VEHID_RANGE_TT
Optional: Yes
Call by Reference: Yes

SSPEZ_RANGE_IT - Selection options for additional information 2

Data type: JIT_SSPEZ_RANGE_TT
Optional: Yes
Call by Reference: Yes

GRPIN_RANGE_IT - Selection options for grouping info

Data type: JIT_GRPIN_RANGE_TT
Optional: Yes
Call by Reference: Yes

GRIND_RANGE_IT - Selection options for grouping index

Data type: JIT_GRIND_RANGE_TT
Optional: Yes
Call by Reference: Yes

VBELN_VL_RANGE_IT - Ranges table in delivery (SeqJC)

Data type: JIT_VBELN_VL_RANGE_TT
Optional: Yes
Call by Reference: Yes

SELECT_DELI_ONLY_IV - Delivery Created

Data type: JITIT-DCREA
Optional: Yes
Call by Reference: No ( called with pass by value option)

ABTYP_RANGE_IT - Table Type for Ranges Table using Call Type

Data type: JIT_ABTYP_RANGE_TT
Optional: Yes
Call by Reference: Yes

CUSTO_RANGE_IT - Table Type for Ranges Table for JIT Customer

Data type: JIT_CUSTO_RANGE_TT
Optional: Yes
Call by Reference: Yes

ANLIE_RANGE_IT - Table Type f.Ranges Table using Comp.Group Type (Delivery)

Data type: JIT_ANLIE_RANGE_TT
Optional: Yes
Call by Reference: Yes

MATID_RANGE_IT - Table Type for Ranges Table using JIT Material

Data type: JIT_MATID_RANGE_TT
Optional: Yes
Call by Reference: Yes

PDATE_RANGE_IT - Table Type for Ranges Table using Planned Shipping Time

Data type: JIT_PDATE_RANGE_TT
Optional: Yes
Call by Reference: Yes

PRODN_RANGE_IT - SumJC: Table w.Selection Options f. External Call No.(SumJC)

Data type: JIT_PRODN_RANGE_TT
Optional: Yes
Call by Reference: Yes

INTST_RANGE_IT - Range Table for Internal Processing Status

Data type: JIT_INTST_RANGE_TT
Optional: Yes
Call by Reference: Yes

VETYP_RANGE_IT - Selection options for additional information 1

Data type: JIT_VETYP_RANGE_TT
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for JIT01_SELECT_JITHD_IT_CO

JIT_HD_IT_CO_ET - Interlinking JITHD and JITIT

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

CNTRL_INTST_IT -

Data type: JIT00_CNTRL_INTST_T
Optional: Yes
Call by Reference: Yes

VBELN_VL_SET_IT -

Data type: JIT00_VBELN_VL_SET_PT
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_ENTRIES_FOUND -

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

Copy and paste ABAP code example for JIT01_SELECT_JITHD_IT_CO 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_delivery_iv  TYPE JITIT-DCREA, "   
lt_jit_hd_it_co_et  TYPE STANDARD TABLE OF JIT_HD_IT_CO, "   
lv_no_entries_found  TYPE JIT_HD_IT_CO, "   
lv_vehid_range_it  TYPE JIT_VEHID_RANGE_TT, "   
lv_sspez_range_it  TYPE JIT_SSPEZ_RANGE_TT, "   
lv_grpin_range_it  TYPE JIT_GRPIN_RANGE_TT, "   
lv_grind_range_it  TYPE JIT_GRIND_RANGE_TT, "   
lv_vbeln_vl_range_it  TYPE JIT_VBELN_VL_RANGE_TT, "   
lv_select_deli_only_iv  TYPE JITIT-DCREA, "   
lv_abtyp_range_it  TYPE JIT_ABTYP_RANGE_TT, "   
lt_cntrl_intst_it  TYPE STANDARD TABLE OF JIT00_CNTRL_INTST_T, "   
lv_custo_range_it  TYPE JIT_CUSTO_RANGE_TT, "   
lt_vbeln_vl_set_it  TYPE STANDARD TABLE OF JIT00_VBELN_VL_SET_PT, "   
lv_anlie_range_it  TYPE JIT_ANLIE_RANGE_TT, "   
lv_matid_range_it  TYPE JIT_MATID_RANGE_TT, "   
lv_pdate_range_it  TYPE JIT_PDATE_RANGE_TT, "   
lv_prodn_range_it  TYPE JIT_PRODN_RANGE_TT, "   
lv_intst_range_it  TYPE JIT_INTST_RANGE_TT, "   
lv_vetyp_range_it  TYPE JIT_VETYP_RANGE_TT. "   

  CALL FUNCTION 'JIT01_SELECT_JITHD_IT_CO'  "NOTRANSL: DON: Selektives lesen von JITHD, JITIT und JITCO via inner join
    EXPORTING
         DELIVERY_IV = lv_delivery_iv
         VEHID_RANGE_IT = lv_vehid_range_it
         SSPEZ_RANGE_IT = lv_sspez_range_it
         GRPIN_RANGE_IT = lv_grpin_range_it
         GRIND_RANGE_IT = lv_grind_range_it
         VBELN_VL_RANGE_IT = lv_vbeln_vl_range_it
         SELECT_DELI_ONLY_IV = lv_select_deli_only_iv
         ABTYP_RANGE_IT = lv_abtyp_range_it
         CUSTO_RANGE_IT = lv_custo_range_it
         ANLIE_RANGE_IT = lv_anlie_range_it
         MATID_RANGE_IT = lv_matid_range_it
         PDATE_RANGE_IT = lv_pdate_range_it
         PRODN_RANGE_IT = lv_prodn_range_it
         INTST_RANGE_IT = lv_intst_range_it
         VETYP_RANGE_IT = lv_vetyp_range_it
    TABLES
         JIT_HD_IT_CO_ET = lt_jit_hd_it_co_et
         CNTRL_INTST_IT = lt_cntrl_intst_it
         VBELN_VL_SET_IT = lt_vbeln_vl_set_it
    EXCEPTIONS
        NO_ENTRIES_FOUND = 1
. " JIT01_SELECT_JITHD_IT_CO




ABAP code using 7.40 inline data declarations to call FM JIT01_SELECT_JITHD_IT_CO

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 DCREA FROM JITIT INTO @DATA(ld_delivery_iv).
 
 
 
 
 
 
 
 
"SELECT single DCREA FROM JITIT INTO @DATA(ld_select_deli_only_iv).
 
 
 
 
 
 
 
 
 
 
 


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!