SAP Reports / Programs

DMCDTL_MT_CONVOBJECTS_DEFINE SAP ABAP Report - API: Create conversion objects of a mass transfer







DMCDTL_MT_CONVOBJECTS_DEFINE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is only to be used in the context of the migration basis technology (MBT) as part of the data transfer layer (DTL)...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter DMCDTL_MT_CONVOBJECTS_DEFINE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT DMCDTL_MT_CONVOBJECTS_DEFINE. "Basic submit
SUBMIT DMCDTL_MT_CONVOBJECTS_DEFINE AND RETURN. "Return to original report after report execution complete
SUBMIT DMCDTL_MT_CONVOBJECTS_DEFINE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_APPLIC = D Appl.
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: P_PACKID = D Pack ID
Selection Text: S_TABLE = table range
Title: API: Create conversion objects of a mass transfer


INCLUDES used within this REPORT DMCDTL_MT_CONVOBJECTS_DEFINE

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

GET_JOB_RUNTIME_INFO CALL FUNCTION 'GET_JOB_RUNTIME_INFO' IMPORTING jobcount = l_jobcount jobname = l_jobname EXCEPTIONS * NO_RUNTIME_INFO = 1 OTHERS = 0.

ENQUEUE_E_DMC_JOB CALL FUNCTION 'ENQUEUE_E_DMC_JOB' EXPORTING mode_dmc_job_lock_struct = 'E' jobname = l_jobname jobcount = l_jobcount _scope = '2' _wait = 'X' _collect = ' ' EXCEPTIONS * foreign_lock = 1 * system_failure = 2 OTHERS = 0.

CNV_MBT_RFC_PCL CALL FUNCTION 'CNV_MBT_RFC_PCL' EXPORTING packid = p_packid IMPORTING destination_id = l_pcl_rfcdest EXCEPTIONS no_destinations_for_packid = 1 no_pcl_destination_for_packid = 2 OTHERS = 3.

PCL_GET_CONVOBJ CALL FUNCTION 'PCL_GET_CONVOBJ' EXPORTING subproject = l_subproject cobj = l_cobj_table_only IMPORTING description = l_description selection_field = l_selfield begin_of_processing = l_boprule_pcl end_of_processing = l_eoprule_pcl begin_of_transaction = l_botrule_pcl end_of_transaction = l_eotrule_pcl TABLES tablelist = gt_struct_pcl fieldlist = lt_rcall_rules fieldpars = lt_rcall_actp includes = lt_pcl_includes rulelist = lt_rule_hdr rulepars = lt_rule_fpars rulecoding = lt_rule_code relationships = gt_rsrel_pcl forkeys = gt_forkey tabstruc = gt_tabstruc "GW000144 EXCEPTIONS subproject_does_not_exist = 3 subproject_is_not_active = 4 cobj_does_not_exist = 5 tabstruc_not_filled = 6 "GW000144 OTHERS = 7.

PCL_GET_CONVOBJ CALL FUNCTION 'PCL_GET_CONVOBJ' DESTINATION l_pcl_rfcdest EXPORTING subproject = l_subproject cobj = l_cobj_table_only IMPORTING description = l_description selection_field = l_selfield begin_of_processing = l_boprule_pcl end_of_processing = l_eoprule_pcl begin_of_transaction = l_botrule_pcl end_of_transaction = l_eotrule_pcl TABLES tablelist = gt_struct_pcl fieldlist = lt_rcall_rules fieldpars = lt_rcall_actp includes = lt_pcl_includes rulelist = lt_rule_hdr rulepars = lt_rule_fpars rulecoding = lt_rule_code relationships = gt_rsrel_pcl forkeys = gt_forkey tabstruc = gt_tabstruc "GW000144 EXCEPTIONS communication_failure = 1 MESSAGE l_text system_failure = 2 MESSAGE l_text subproject_does_not_exist = 3 subproject_is_not_active = 4 cobj_does_not_exist = 5 tabstruc_not_filled = 6 "GW000144 OTHERS = 7.

CNV_MBT_PCL_COBJINFO_SET CALL FUNCTION 'CNV_MBT_PCL_COBJINFO_SET' EXPORTING subproject = l_subproject convobject = l_cobj_table_only mbtname = l_cobj_full_name EXCEPTIONS OTHERS = 0.

CNV_MBT_PCL_COBJINFO_SET CALL FUNCTION 'CNV_MBT_PCL_COBJINFO_SET' DESTINATION l_pcl_rfcdest EXPORTING subproject = l_subproject convobject = l_cobj_table_only mbtname = l_cobj_full_name EXCEPTIONS communication_failure = 1 MESSAGE l_text system_failure = 2 MESSAGE l_text OTHERS = 0.

CNV_MBT_STATE_REFRESH CALL FUNCTION 'CNV_MBT_STATE_REFRESH' DESTINATION l_pcl_rfcdest STARTING NEW TASK l_jobcount EXPORTING packid = p_packid EXCEPTIONS OTHERS = 0.

DMC_DDIF_TABL_GET_WRAPPER CALL FUNCTION 'DMC_DDIF_TABL_GET_WRAPPER' DESTINATION gref_mt->sender_rfcdest->my_rfcdest EXPORTING name = gs_struct_pcl-tabname i_nametab_only = gc_true TABLES dd03p_tab = lt_dd03p EXCEPTIONS communication_failure = 1 MESSAGE l_msgtext system_failure = 2 MESSAGE l_msgtext illegal_input = 3 undefined_error = 4 no_fields = 5 OTHERS = 6.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name DMCDTL_MT_CONVOBJECTS_DEFINE or its description.