SAP CMW_DL_INBOUND Function Module for NOTRANSL: Inbound-Baustein für APO Lieferungen









CMW_DL_INBOUND is a standard cmw dl inbound 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: Inbound-Baustein für APO Lieferungen 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 cmw dl inbound FM, simply by entering the name CMW_DL_INBOUND into the relevant SAP transaction such as SE37 or SE38.

Function Group: MWDL
Program Name: SAPLMWDL
Main Program: SAPLMWDL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function CMW_DL_INBOUND 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 'CMW_DL_INBOUND'"NOTRANSL: Inbound-Baustein für APO Lieferungen
EXPORTING
IS_CTRLPARAMS = "Control Parameters for Data Transfers

TABLES
DLV_HDR = "VS: Communication Layer: Delivery Creation Header Data
DLV_HDR_X = "VS: Communication Layer: Delivery Creation Header Data
DLV_HDR_APP = "VS: Communication Layer: Delivery Creation Header Data
DLV_PRO = "VS Communication Layer: Delivery Creation
DLV_PRO_X = "VS Communication Layer: Delivery Creation
DLV_PRO_APP = "VS Communication Layer: Delivery Creation
EXTENSIONIN = "Reference Structure for ExtensionIn and ExtensionOut BAPIs
* RETURN = "Return Parameter
.




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_SAPLMWDL_001 User Exit Inbound Processing Deliveries

IMPORTING Parameters details for CMW_DL_INBOUND

IS_CTRLPARAMS - Control Parameters for Data Transfers

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

TABLES Parameters details for CMW_DL_INBOUND

DLV_HDR - VS: Communication Layer: Delivery Creation Header Data

Data type: CMWDLVHDR
Optional: No
Call by Reference: Yes

DLV_HDR_X - VS: Communication Layer: Delivery Creation Header Data

Data type: CMWDLVHDRX
Optional: No
Call by Reference: Yes

DLV_HDR_APP - VS: Communication Layer: Delivery Creation Header Data

Data type: CMWDLVHDRA
Optional: No
Call by Reference: Yes

DLV_PRO - VS Communication Layer: Delivery Creation

Data type: CMWDLVPRO
Optional: No
Call by Reference: Yes

DLV_PRO_X - VS Communication Layer: Delivery Creation

Data type: CMWDLVPROX
Optional: No
Call by Reference: Yes

DLV_PRO_APP - VS Communication Layer: Delivery Creation

Data type: CMWDLVPROA
Optional: No
Call by Reference: Yes

EXTENSIONIN - Reference Structure for ExtensionIn and ExtensionOut BAPIs

Data type: CIFBPAREX
Optional: No
Call by Reference: Yes

RETURN - Return Parameter

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

Copy and paste ABAP code example for CMW_DL_INBOUND 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_dlv_hdr  TYPE STANDARD TABLE OF CMWDLVHDR, "   
lv_is_ctrlparams  TYPE CIFCTRLPAR, "   
lt_dlv_hdr_x  TYPE STANDARD TABLE OF CMWDLVHDRX, "   
lt_dlv_hdr_app  TYPE STANDARD TABLE OF CMWDLVHDRA, "   
lt_dlv_pro  TYPE STANDARD TABLE OF CMWDLVPRO, "   
lt_dlv_pro_x  TYPE STANDARD TABLE OF CMWDLVPROX, "   
lt_dlv_pro_app  TYPE STANDARD TABLE OF CMWDLVPROA, "   
lt_extensionin  TYPE STANDARD TABLE OF CIFBPAREX, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'CMW_DL_INBOUND'  "NOTRANSL: Inbound-Baustein für APO Lieferungen
    EXPORTING
         IS_CTRLPARAMS = lv_is_ctrlparams
    TABLES
         DLV_HDR = lt_dlt_hdr
         DLV_HDR_X = lt_dlt_hdr_x
         DLV_HDR_APP = lt_dlt_hdr_app
         DLV_PRO = lt_dlt_pro
         DLV_PRO_X = lt_dlt_pro_x
         DLV_PRO_APP = lt_dlt_pro_app
         EXTENSIONIN = lt_extensionin
         RETURN = lt_return
. " CMW_DL_INBOUND




ABAP code using 7.40 inline data declarations to call FM CMW_DL_INBOUND

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



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!