SAP DMC_IU_EXPORT_CREATE Function Module for MWB: Integrated Upgrade Ident
DMC_IU_EXPORT_CREATE is a standard dmc iu export create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for MWB: Integrated Upgrade Ident 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 dmc iu export create FM, simply by entering the name DMC_IU_EXPORT_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: DMC_IU
Program Name: SAPLDMC_IU
Main Program: SAPLDMC_IU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DMC_IU_EXPORT_CREATE 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 'DMC_IU_EXPORT_CREATE'"MWB: Integrated Upgrade Ident.
EXPORTING
I_UPGRADE_ID = "MWB: Integrated Upgrade Ident
I_CLNT = "Client
I_RFCDEST_RCV = "Logical Destination (Specified in Function Call)
I_PARALLEL = "Byte Value
* I_TPPARAM_PATH = "Parameter file
* IREF_ACTIVITY = "
* I_CHECK_BUFFER_COMP = "Check Buffer Compatibility
IMPORTING Parameters details for DMC_IU_EXPORT_CREATE
I_UPGRADE_ID - MWB: Integrated Upgrade Ident
Data type: DMC_IU_HDR-IDENTOptional: No
Call by Reference: Yes
I_CLNT - Client
Data type: MANDTOptional: No
Call by Reference: Yes
I_RFCDEST_RCV - Logical Destination (Specified in Function Call)
Data type: RFCDESTOptional: No
Call by Reference: Yes
I_PARALLEL - Byte Value
Data type: INT1Optional: No
Call by Reference: Yes
I_TPPARAM_PATH - Parameter file
Data type: DMC_IU_DTYPE-TPPARAMFILEOptional: Yes
Call by Reference: Yes
IREF_ACTIVITY -
Data type: CL_DMC_ACT_RECOptional: Yes
Call by Reference: Yes
I_CHECK_BUFFER_COMP - Check Buffer Compatibility
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for DMC_IU_EXPORT_CREATE 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_i_upgrade_id | TYPE DMC_IU_HDR-IDENT, " | |||
| lv_i_clnt | TYPE MANDT, " | |||
| lv_i_rfcdest_rcv | TYPE RFCDEST, " | |||
| lv_i_parallel | TYPE INT1, " | |||
| lv_i_tpparam_path | TYPE DMC_IU_DTYPE-TPPARAMFILE, " | |||
| lv_iref_activity | TYPE CL_DMC_ACT_REC, " | |||
| lv_i_check_buffer_comp | TYPE BOOLEAN. " |
|   CALL FUNCTION 'DMC_IU_EXPORT_CREATE' "MWB: Integrated Upgrade Ident |
| EXPORTING | ||
| I_UPGRADE_ID | = lv_i_upgrade_id | |
| I_CLNT | = lv_i_clnt | |
| I_RFCDEST_RCV | = lv_i_rfcdest_rcv | |
| I_PARALLEL | = lv_i_parallel | |
| I_TPPARAM_PATH | = lv_i_tpparam_path | |
| IREF_ACTIVITY | = lv_iref_activity | |
| I_CHECK_BUFFER_COMP | = lv_i_check_buffer_comp | |
| . " DMC_IU_EXPORT_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM DMC_IU_EXPORT_CREATE
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 IDENT FROM DMC_IU_HDR INTO @DATA(ld_i_upgrade_id). | ||||
| "SELECT single TPPARAMFILE FROM DMC_IU_DTYPE INTO @DATA(ld_i_tpparam_path). | ||||
Search for further information about these or an SAP related objects