CNV_MBT_DTL_CLUSTER_CONVERSION is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter CNV_MBT_DTL_CLUSTER_CONVERSION into the relevant SAP transactions such as SE38 or SE80
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.
Title: Conversion of data within the DTL cluster
INCLUDE CNV_MBT_SM_PARAMS.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING packid = p_pack exec_target = 'S' all_as_table = '' IMPORTING destination_id = gv_dest_to_sender EXCEPTIONS no_destinations_for_packid = 1 no_specific_destination_type = 2 get_system_info_failure = 3 rfc_failure = 4 system_info_has_changed = 5 login_not_possible = 6 wrong_unicode_settings = 7 OTHERS = 8.
CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING packid = p_pack exec_target = 'C' all_as_table = '' IMPORTING destination_id = gv_dest_to_central EXCEPTIONS no_destinations_for_packid = 1 no_specific_destination_type = 2 get_system_info_failure = 3 rfc_failure = 4 system_info_has_changed = 5 login_not_possible = 6 wrong_unicode_settings = 7 OTHERS = 8.
CNV_MBT_ADM_PACKAGE_INFO CALL FUNCTION 'CNV_MBT_ADM_PACKAGE_INFO' EXPORTING packid = p_pack IMPORTING mtid = gv_mtid EXCEPTIONS packid_does_not_exist = 1 OTHERS = 2.
CNV_MBT_SUBSTATE_GET CALL FUNCTION 'CNV_MBT_SUBSTATE_GET' EXPORTING session_id = gd_sess_id TABLES t_substate = gt_cnvmbtsubstate EXCEPTIONS daten_not_found = 1 OTHERS = 2.
DTL_GET_OBJECT_BLOCK_STATUS CALL FUNCTION 'DTL_GET_OBJECT_BLOCK_STATUS' DESTINATION gv_dest_to_central EXPORTING i_mt_id = gv_mtid i_block_step = 'L' IMPORTING et_object_names = gt_objects_to_convert.
DTL_MT_STATUS_CHECK CALL FUNCTION 'DTL_MT_STATUS_CHECK' DESTINATION gv_dest_to_central EXPORTING i_mt_id = gv_mtid i_process_step = 'C' TABLES et_mt_status = gt_not_selected_objects.
DTL_CLUSTER_ADDRESSES_GET CALL FUNCTION 'DTL_CLUSTER_ADDRESSES_GET' DESTINATION gv_dest_to_central EXPORTING i_packid = p_pack i_migr_object = gv_object IMPORTING et_cluster_ids = gt_cluster_ids EXCEPTIONS object_not_exist = 1 access_plan_not_exist = 2 invalid_package = 3 invalid_access_plan_type = 4 wrong_reading_type = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
CNV_MBT_DTL_CLUSTER_CONVERSION - Conversion of data within the DTL cluster CNV_MBT_DTL_CLUSTER_CONVERSION - Conversion of data within the DTL cluster CNV_MBT_DOMRULES_ASSIGN - Assign Domain Rules CNV_MBT_DOMRULES_ASSIGN - Assign Domain Rules CNV_MBT_DOCU_CREATE_TS - Create, edit or view activity documentation CNV_MBT_DOCU_CREATE_TS - Create, edit or view activity documentation