CNV_MBT_CHECK_START 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_CHECK_START 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: PCL Checks
INCLUDE: CNV_MBT_SUB_SM_PARAMS, CNV_MBT_SM_MACROS, CNV_MBT_SUB_SM_MACROS
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_L_STATE_INSERT CALL FUNCTION 'CNV_MBT_L_STATE_INSERT' EXPORTING IM_PACKID = p_pack IM_PHASE = p_phase IM_ACTIVITY = p_act_id IM_ONLY_INITIAL = 'X' EXCEPTIONS INSERT_FAILED = 1 CONNECTION_FAILED = 2 OTHERS = 3.
CNV_MBT_PC_ACTIVITY_START CALL FUNCTION 'CNV_MBT_PC_ACTIVITY_START' EXPORTING packid = p_pack phase = p_phase activity_id = 'PC002_READING_TYPE_INIT' * AND_RETURN = 'X' * VARIANT = * LOG_EXECUTION = ' ' EXCEPTIONS transaction_does_not_exist = 1 program_does_not_exist = 2 no_authority = 3 scheduling_error = 4 variant_not_maintained = 5 destination_not_maint = 6 activity_log_error = 7 start_not_possible = 8 OTHERS = 9 .
CNV_MBT_DEX_GET_EXTRACT_MODE CALL FUNCTION 'CNV_MBT_DEX_GET_EXTRACT_MODE' EXPORTING IM_PACKID = p_pack IMPORTING EX_IMPORT = gv_dex_import_mode EX_EXPORT = gv_dex_export_mode EXCEPTIONS INVALID_CALL = 1 ERROR_WHILE_READING = 2 OTHERS = 3.
CNV_MBT_ADM_MAX_JOBS_GET CALL FUNCTION 'CNV_MBT_ADM_MAX_JOBS_GET' EXPORTING packid = p_pack exec_target = 'P' phase = p_phase activity_id = p_act_id scheduler_mode = sy-batch IMPORTING EX_JOBS_FREE = gd_jobs.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = gt_substate EXCEPTIONS update_failed = 1 OTHERS = 2.
CNV_MBT_PC_PROG_START_BGR CALL FUNCTION 'CNV_MBT_PC_PROG_START_BGR' EXPORTING progname = gd_substate-progname job_name = gd_substate-jobname IMPORTING jobcount = gd_substate-jobcount TABLES lt_params = gt_params EXCEPTIONS program_does_not_exist = 1 no_authority = 2 scheduling_error = 3 OTHERS = 4.
CNV_MBT_SUBSTATE_JOBCOUNT_UPD CALL FUNCTION 'CNV_MBT_SUBSTATE_JOBCOUNT_UPD' EXPORTING i_cnvmbtsubstate = gd_substate EXCEPTIONS OTHERS = 1.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = gt_substate EXCEPTIONS update_failed = 1 OTHERS = 2.
CNV_MBT_CHECK_INIT CALL FUNCTION 'CNV_MBT_CHECK_INIT' EXPORTING i_packid = p_pack i_customer = p_cust i_log = p_log i_dd = gd_dd i_cmis = gd_cmis TABLES p_convobjects = convobjects EXCEPTIONS OTHERS = 1.
CNV_MBT_CHECK_FINISH CALL FUNCTION 'CNV_MBT_CHECK_FINISH' IMPORTING ex_status = ld_state_log EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.