SAP JITOUT02_INSERT_DELCON Function Module for NOTRANSL: Ergänzen der Lieferquittierung
JITOUT02_INSERT_DELCON is a standard jitout02 insert delcon 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: Ergänzen der Lieferquittierung 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 jitout02 insert delcon FM, simply by entering the name JITOUT02_INSERT_DELCON into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT02
Program Name: SAPLJITOUT02
Main Program: SAPLJITOUT02
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT02_INSERT_DELCON 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 'JITOUT02_INSERT_DELCON'"NOTRANSL: Ergänzen der Lieferquittierung.
EXPORTING
DLCNO_IS = "Last Delivery Confirmation Number to Vendor
JITODIACO_IT = "Table Type for JITODIACO
* REPRL_IV = '' "Entry Available in Reprocessing List
CHANGING
DLCNOHD_CT = "Delivery Confirmations Header
DLCNOCO_CT = "Delivery Confirmations Items
DLCNORF_CT = "References for Delivery Confirmation
EXCEPTIONS
GENERAL_ERROR = 1
IMPORTING Parameters details for JITOUT02_INSERT_DELCON
DLCNO_IS - Last Delivery Confirmation Number to Vendor
Data type: DLCNOOptional: No
Call by Reference: Yes
JITODIACO_IT - Table Type for JITODIACO
Data type: JITODIACO_TTOptional: No
Call by Reference: Yes
REPRL_IV - Entry Available in Reprocessing List
Data type: JITO_REPRLDefault: ''
Optional: Yes
Call by Reference: Yes
CHANGING Parameters details for JITOUT02_INSERT_DELCON
DLCNOHD_CT - Delivery Confirmations Header
Data type: DLCNOHD_TTOptional: No
Call by Reference: Yes
DLCNOCO_CT - Delivery Confirmations Items
Data type: DLCNOCO_TTOptional: No
Call by Reference: Yes
DLCNORF_CT - References for Delivery Confirmation
Data type: DLCNORF_TTOptional: No
Call by Reference: Yes
EXCEPTIONS details
GENERAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for JITOUT02_INSERT_DELCON 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_dlcno_is | TYPE DLCNO, " | |||
| lv_dlcnohd_ct | TYPE DLCNOHD_TT, " | |||
| lv_general_error | TYPE DLCNOHD_TT, " | |||
| lv_dlcnoco_ct | TYPE DLCNOCO_TT, " | |||
| lv_jitodiaco_it | TYPE JITODIACO_TT, " | |||
| lv_reprl_iv | TYPE JITO_REPRL, " '' | |||
| lv_dlcnorf_ct | TYPE DLCNORF_TT. " |
|   CALL FUNCTION 'JITOUT02_INSERT_DELCON' "NOTRANSL: Ergänzen der Lieferquittierung |
| EXPORTING | ||
| DLCNO_IS | = lv_dlcno_is | |
| JITODIACO_IT | = lv_jitodiaco_it | |
| REPRL_IV | = lv_reprl_iv | |
| CHANGING | ||
| DLCNOHD_CT | = lv_dlcnohd_ct | |
| DLCNOCO_CT | = lv_dlcnoco_ct | |
| DLCNORF_CT | = lv_dlcnorf_ct | |
| EXCEPTIONS | ||
| GENERAL_ERROR = 1 | ||
| . " JITOUT02_INSERT_DELCON | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT02_INSERT_DELCON
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_reprl_iv) | = ''. | |||
Search for further information about these or an SAP related objects