CNVC_SCWB_POSTPROCESSING is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for In this activity, the system compiles the results of the repository comparison...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 CNVC_SCWB_POSTPROCESSING 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: Compile Comparison Results
Text Symbol: T01 = No active comparison package found.
Text Symbol: T02 = This comparison package does not exist:
Text Symbol: T03 = The comparison results have been compiled.
Text Symbol: T04 = Error
Text Symbol: T05 = Done
INCLUDE: CNVC_SCWB_PARAMS,
INCLUDE CNVC_SCWB_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_AUTHORITY_CHECK CALL FUNCTION 'CNV_MBT_AUTHORITY_CHECK' EXPORTING im_area = 'SLOP' im_level = 'PACKAGE' im_activity = '02' EXCEPTIONS no_authority = 1 OTHERS = 2.
CNVCF_SCNG_RUNID_GETACTIVE * CALL FUNCTION 'CNVCF_SCNG_RUNID_GETACTIVE' * IMPORTING * runid = p_runid.
CNVCF_SCWB_ZLOG * CALL FUNCTION 'CNVCF_SCWB_ZLOG' * EXPORTING * i_log_object = c_obj_zxiproxy * i_extnumber = gv_ext_number * TABLES * t_log_message = gt_log_message * EXCEPTIONS * log_header_inconsistent = 1 * logging_error = 2 * OTHERS = 3.
BAL_DSP_LOG_DISPLAY * CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' * EXCEPTIONS * OTHERS = 1.
CNVCF_SCWB_CHECK_RUNID * CALL FUNCTION 'CNVCF_SCWB_CHECK_RUNID' * EXPORTING * iv_runid = p_runid * EXCEPTIONS * INITIAL = 1 * TOO_LONG = 2 * ILLEGAL_CHAR = 3 * NOT_EXIST = 4 * OTHERS = 5 * .
CNVCF_SCWB_ZLOG * CALL FUNCTION 'CNVCF_SCWB_ZLOG' * EXPORTING * i_log_object = c_obj_zxiproxy * i_extnumber = gv_ext_number * TABLES * t_log_message = gt_log_message * EXCEPTIONS * log_header_inconsistent = 1 * logging_error = 2 * OTHERS = 3.
BAL_DSP_LOG_DISPLAY * CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' * EXCEPTIONS * OTHERS = 1.
CNVCF_SCWB_ZLOG * CALL FUNCTION 'CNVCF_SCWB_ZLOG' * EXPORTING * i_log_object = c_obj_zxiproxy * i_extnumber = gv_ext_number * TABLES * t_log_message = gt_log_message * EXCEPTIONS * log_header_inconsistent = 1 * logging_error = 2 * OTHERS = 3.
BAL_DSP_LOG_DISPLAY * CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' * EXCEPTIONS * OTHERS = 1.
JOB_OPEN * CALL FUNCTION 'JOB_OPEN' * EXPORTING * jobname = gv_jobname * IMPORTING * jobcount = gv_jobcount * EXCEPTIONS * cant_create_job = 01 * invalid_job_data = 02 * jobname_missing = 03.
JOB_CLOSE * CALL FUNCTION 'JOB_CLOSE' * EXPORTING * jobcount = gv_jobcount * jobname = gv_jobname * strtimmed = 'X' * EXCEPTIONS * cant_start_immediate = 01 * invalid_startdate = 02 * jobname_missing = 03 * job_close_failed = 04 * job_nosteps = 05 * job_notex = 06 * lock_failed = 07 * OTHERS = 99.
CNV_MBT_RFC_PCL CALL FUNCTION 'CNV_MBT_RFC_PCL' EXPORTING packid = p_pack IMPORTING destination_id = lv_dest EXCEPTIONS no_destinations_for_packid = 1 no_pcl_destination_for_packid = 2 OTHERS = 3.
CNV_MBT_PC_PROG_START_BGR CALL FUNCTION 'CNV_MBT_PC_PROG_START_BGR' DESTINATION lv_dest EXPORTING progname = lc_prog_r job_name = lc_fill_job IMPORTING jobcount = ls_substate-jobcount TABLES lt_params = lt_params EXCEPTIONS program_does_not_exist = 1 no_authority = 2 scheduling_error = 3 communication_failure = 98 MESSAGE gd_msgtext system_failure = 99 MESSAGE gd_msgtext OTHERS = 4.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = lt_substate EXCEPTIONS update_failed = 1 OTHERS = 2.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' TABLES im_cnvmbtsubstate = lt_substate EXCEPTIONS update_failed = 1 OTHERS = 2.
CNV_MBT_L_STATE_FINISH CALL FUNCTION 'CNV_MBT_L_STATE_FINISH' EXPORTING packid = p_pack phase = p_phase activity_id = p_act_id ir_logger = gr_logger.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.