SAP DTL_MT_CONVOBJS_RESET Function Module for Delete conversion objects of a mass transfer
DTL_MT_CONVOBJS_RESET is a standard dtl mt convobjs reset SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Delete conversion objects of a mass transfer 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 dtl mt convobjs reset FM, simply by entering the name DTL_MT_CONVOBJS_RESET into the relevant SAP transaction such as SE37 or SE38.
Function Group: DMC_DTL
Program Name: SAPLDMC_DTL
Main Program: SAPLDMC_DTL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function DTL_MT_CONVOBJS_RESET 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 'DTL_MT_CONVOBJS_RESET'"Delete conversion objects of a mass transfer.
EXPORTING
IM_MODE = "Excecute / status / log
* IM_APPLIC = 'SLO' "DMC Tool: Application
* IM_MT_ID = "mass transfer identifier
* IM_NO_OF_JOBS = 1 "number of batch processes
* IM_RESET_ALL = '-' "reset complete mass transfer?
* IM_PACKID = "Package ID
IM_SESSION_ID = "MBT PCL SESSION_ID
* IM_RESTART = '-' "restart mode
IMPORTING
EX_LOGNUMBER = "Application log: log number
EX_STATISTICS = "Structure for PCL function module / STATUS
TABLES
* IT_TABLES = "
* ET_LOGNUMBERS = "table of application log numbers
* ET_STATUS = "Status info for MWB activities
IMPORTING Parameters details for DTL_MT_CONVOBJS_RESET
IM_MODE - Excecute / status / log
Data type: CHAR1Optional: No
Call by Reference: No ( called with pass by value option)
IM_APPLIC - DMC Tool: Application
Data type: DMC_APPLICDefault: 'SLO'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IM_MT_ID - mass transfer identifier
Data type: DMC_MT_IDENTIFIEROptional: Yes
Call by Reference: No ( called with pass by value option)
IM_NO_OF_JOBS - number of batch processes
Data type: NUMC2Default: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
IM_RESET_ALL - reset complete mass transfer?
Data type: BOOLEANDefault: '-'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IM_PACKID - Package ID
Data type: DMC_PACKAGE_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
IM_SESSION_ID - MBT PCL SESSION_ID
Data type: DMC_SESSION_IDOptional: No
Call by Reference: No ( called with pass by value option)
IM_RESTART - restart mode
Data type: BOOLEANDefault: '-'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DTL_MT_CONVOBJS_RESET
EX_LOGNUMBER - Application log: log number
Data type: BALOGNROptional: No
Call by Reference: No ( called with pass by value option)
EX_STATISTICS - Structure for PCL function module / STATUS
Data type: DTL_MT_STATISTICSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DTL_MT_CONVOBJS_RESET
IT_TABLES -
Data type: DMC_RANGES_TABNAMEOptional: Yes
Call by Reference: Yes
ET_LOGNUMBERS - table of application log numbers
Data type: DMC_DTL_LOGS_TOptional: Yes
Call by Reference: Yes
ET_STATUS - Status info for MWB activities
Data type: DMC_ACTIVITY_STATUS_INFO_TOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for DTL_MT_CONVOBJS_RESET 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_im_mode | TYPE CHAR1, " | |||
| lt_it_tables | TYPE STANDARD TABLE OF DMC_RANGES_TABNAME, " | |||
| lv_ex_lognumber | TYPE BALOGNR, " | |||
| lv_im_applic | TYPE DMC_APPLIC, " 'SLO' | |||
| lt_et_lognumbers | TYPE STANDARD TABLE OF DMC_DTL_LOGS_T, " | |||
| lv_ex_statistics | TYPE DTL_MT_STATISTICS, " | |||
| lv_im_mt_id | TYPE DMC_MT_IDENTIFIER, " | |||
| lt_et_status | TYPE STANDARD TABLE OF DMC_ACTIVITY_STATUS_INFO_T, " | |||
| lv_im_no_of_jobs | TYPE NUMC2, " 1 | |||
| lv_im_reset_all | TYPE BOOLEAN, " '-' | |||
| lv_im_packid | TYPE DMC_PACKAGE_ID, " | |||
| lv_im_session_id | TYPE DMC_SESSION_ID, " | |||
| lv_im_restart | TYPE BOOLEAN. " '-' |
|   CALL FUNCTION 'DTL_MT_CONVOBJS_RESET' "Delete conversion objects of a mass transfer |
| EXPORTING | ||
| IM_MODE | = lv_im_mode | |
| IM_APPLIC | = lv_im_applic | |
| IM_MT_ID | = lv_im_mt_id | |
| IM_NO_OF_JOBS | = lv_im_no_of_jobs | |
| IM_RESET_ALL | = lv_im_reset_all | |
| IM_PACKID | = lv_im_packid | |
| IM_SESSION_ID | = lv_im_session_id | |
| IM_RESTART | = lv_im_restart | |
| IMPORTING | ||
| EX_LOGNUMBER | = lv_ex_lognumber | |
| EX_STATISTICS | = lv_ex_statistics | |
| TABLES | ||
| IT_TABLES | = lt_it_tables | |
| ET_LOGNUMBERS | = lt_et_lognumbers | |
| ET_STATUS | = lt_et_status | |
| . " DTL_MT_CONVOBJS_RESET | ||
ABAP code using 7.40 inline data declarations to call FM DTL_MT_CONVOBJS_RESET
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_im_applic) | = 'SLO'. | |||
| DATA(ld_im_no_of_jobs) | = 1. | |||
| DATA(ld_im_reset_all) | = '-'. | |||
| DATA(ld_im_restart) | = '-'. | |||
Search for further information about these or an SAP related objects