CNVC_SCWB_USAGE_ANALYSIS 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 CNVC_SCWB_USAGE_ANALYSIS 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: Determine Usage Analysis based on CDMC projects
Text Symbol: T01 = System ID
Text Symbol: T02 = CDMC Project
Text Symbol: T03 = Select CDMC Projects
Text Symbol: T04 = RFC Destination
INCLUDE: CNVC_SCWB_PARAMS,
No SAP DATABASE tables are accessed within this REPORT code!
CNVCDMCCA_GET_PROJECTID CALL FUNCTION 'CNVCDMCCA_GET_PROJECTID' "#EC EXISTS
EXPORTING iv_rfcdest = gs_sel_cdmcprj-rfcdest IMPORTING et_project_list = gt_projids EXCEPTIONS not_authorized = 1 invalid_authority_data = 2 no_projects_found = 3 no_projects_with_usage_data = 4 communication_failure = 5 OTHERS = 6.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' "#EC * EXPORTING retfield = 'PROJECT_ID' value_org = 'S' TABLES value_tab = gt_projids * FIELD_TAB = return_tab = lt_return_tab * DYNPFLD_MAPPING = EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3 .
RPY_EXISTENCE_CHECK_DEVC CALL FUNCTION 'RPY_EXISTENCE_CHECK_DEVC' EXPORTING name = 'CNV_CDMC_REPOOBJS' * LIMU_KEY = EXCEPTIONS not_exist = 1 OTHERS = 2 .
CNV_CDMC_CC_CHECKCDMCAUTHORITY CALL FUNCTION 'CNV_CDMC_CC_CHECKCDMCAUTHORITY' "#EC EXISTS EXPORTING iv_area = 'C' iv_role = 'U' EXCEPTIONS not_authorized = 1 authobj_not_maintained = 2 no_profile = 3 field_mismatch = 4 incoorect_structre = 5 OTHERS = 6.
CNVCDMCCA_VAL_PROJECTID CALL FUNCTION 'CNVCDMCCA_VAL_PROJECTID' "#EC EXISTS EXPORTING iv_project_id = gs_sel_cdmcprj-proj_id iv_rfcdest = gs_sel_cdmcprj-rfcdest IMPORTING ev_valid_project = l_flg EXCEPTIONS not_authorized = 1 invalid_authority_data = 2 project_not_exist = 3 act_usage_anal_not_completed = 4 act_confirm_anal_not_completed = 5 communication_failure = 6 project_incomplete = 7 sys_not_part_of_cdmc_proj = 8 OTHERS = 9.
CNV_MBT_PC_PROG_START_BGR CALL FUNCTION 'CNV_MBT_PC_PROG_START_BGR' EXPORTING progname = lc_prog_r job_name = lc_fill_job "#EC * 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 system_failure = 99 OTHERS = 4.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' "#EC * TABLES im_cnvmbtsubstate = lt_substate EXCEPTIONS update_failed = 1 OTHERS = 2.
CNV_MBT_SUBSTATE_WRITE CALL FUNCTION 'CNV_MBT_SUBSTATE_WRITE' "#EC * 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.