DTL_MT_COBJS_REMOVE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name DTL_MT_COBJS_REMOVE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
DMC_DTL
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'DTL_MT_COBJS_REMOVE' "Remove conversion objects from an existing mass transfer
EXPORTING
im_mt_id = " dmc_mt_identifier DMC: Kennzeichen einer Massenübernahme
im_packid = " dmc_package_id Package ID
im_session_id = " dmc_session_id MBT PCL SESSION_ID
IMPORTING
ex_lognumber = " balognr Application log: log number
ex_status = " dmc_activity_status_info Status info for MWB activities
TABLES
it_tables = " dmc_ranges_tabname Tables to be removed from the mass transfer
. " DTL_MT_COBJS_REMOVE
The ABAP code below is a full code listing to execute function module DTL_MT_COBJS_REMOVE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_ex_lognumber | TYPE BALOGNR , |
| ld_ex_status | TYPE DMC_ACTIVITY_STATUS_INFO , |
| it_it_tables | TYPE STANDARD TABLE OF DMC_RANGES_TABNAME,"TABLES PARAM |
| wa_it_tables | LIKE LINE OF it_it_tables . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ex_lognumber | TYPE BALOGNR , |
| ld_im_mt_id | TYPE DMC_MT_IDENTIFIER , |
| it_it_tables | TYPE STANDARD TABLE OF DMC_RANGES_TABNAME , |
| wa_it_tables | LIKE LINE OF it_it_tables, |
| ld_ex_status | TYPE DMC_ACTIVITY_STATUS_INFO , |
| ld_im_packid | TYPE DMC_PACKAGE_ID , |
| ld_im_session_id | TYPE DMC_SESSION_ID . |
Purpose
This function module deletes entries from table DMC_MT_TABLES for
...See here for full SAP fm documentation
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DTL_MT_COBJS_REMOVE or its description.
DTL_MT_COBJS_REMOVE - Remove conversion objects from an existing mass transfer DTL_MT_COBJS_ADD - Add conversion objects to an existing mass transfer DTL_MT_CLUSTER_DELETE - delete sender system cluster data for the specified mass transfer DTL_MT_ACPLANS_CALC - Calculation of access plans for all conv.obj. of a mass transfer DTL_IU_XPRAS_SET - DTL-Upgrade: set XPRAs list in the receiver client DTL_IU_XPRAS_GET_FROM_BUFFER - DTL-Upgrade: get all XPRAs from a buffer extraction or sp diff analyse