CNV_CDMC_CA_CONFIRM_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 CNV_CDMC_CA_CONFIRM_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.
Selection Text: P_ACTID = Activity ID
Selection Text: P_ADHOC = AD-Hoc Analysis
Selection Text: P_PROJ = Project Specific Analysis
Selection Text: P_PROJID = Project Id
Selection Text: P_SOLMAN = Solution Manager System
Title: CDMC : Confirm Analysis and import all data to Control Center
Text Symbol: 001 = Enter Project id
INCLUDE CNV_CDMC_CA_CONFIRM_ANAL_TOP.
INCLUDE CNV_CDMC_CC_STATUS_MACROS.
INCLUDE CNV_CDMC_CC_APPLICATION_LOG.
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_LC_PROJECT_REGISTER * CALL FUNCTION 'CNV_MBT_LC_PROJECT_REGISTER' * EXPORTING * pack_proj_id = 'CDMC' * check_registration = 'X' * dest_to_central = 'NONE' * dest_to_instnr = 'NONE' * no_dialog = 'X' * IMPORTING * failed = gv_failed * EXCEPTIONS * missing_parameters = 1 * OTHERS = 2.
RFC_GET_LOCAL_SERVERS CALL FUNCTION 'RFC_GET_LOCAL_SERVERS' "+TD15062009 DESTINATION 'NONE' TABLES hosts = gt_hosts EXCEPTIONS not_available = 1 OTHERS = 2.
RFC_SYSTEM_INFO CALL FUNCTION 'RFC_SYSTEM_INFO' DESTINATION gs_rfcdest-rfcdest IMPORTING rfcsi_export = gs_rfcsi EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel.
CNV_CDMC_CC_READ_TABLE CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION gs_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMC_REFOBJS' iv_proj_id = p_projid TABLES it_refobjs = gt_refobjs EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
CNV_CDMC_CC_GET_BPCA_TBOM CALL FUNCTION 'CNV_CDMC_CC_GET_BPCA_TBOM' EXPORTING iv_result_id = gs_bpcarsid-result_id IMPORTING et_bpca_tbom = lt_bpca_tbom EXCEPTIONS bpca_no_authorization = 1 err_in_fetch_bpca_isect = 2 * bpca_no_result_found = 3 bpca_skipped = 3 OTHERS = 4.
CNV_CDMC_CC_READ_TABLE CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION gs_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMCCA_OBJS' iv_proj_id = p_projid TABLES it_objs = gt_objs EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
CNV_CDMC_CC_READ_TABLE * CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' * DESTINATION is_rfcdest-rfcdest * EXPORTING * iv_tabname = 'CNVCDMCCA_SE30' * iv_proj_id = p_projid * TABLES * it_se30 = lt_se30 * EXCEPTIONS * communication_failure = 1 MESSAGE sy-lisel * system_failure = 2 MESSAGE sy-lisel * OTHERS = 3.
CNV_CDMC_CC_READ_TABLE CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION is_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMCCA_EXITS' iv_proj_id = p_projid TABLES it_exits = lt_exits EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
CNV_CDMC_CC_READ_TABLE CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION is_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMCCA_BADIS' iv_proj_id = p_projid TABLES it_badis = lt_badis EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
CNV_CDMC_CC_READ_TABLE CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION is_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMCCA_BTES' iv_proj_id = p_projid TABLES it_btes = lt_btes EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
CNVCDMC_OBJECT_EXISTENCE_CHECK CALL FUNCTION 'CNVCDMC_OBJECT_EXISTENCE_CHECK' DESTINATION xs_rfcdest EXPORTING iv_object_type = xs_bpca_tbom-object iv_object_name = xs_bpca_tbom-obj_name IMPORTING ev_exist = xv_exist EXCEPTIONS communication_failure = 1 system_failure = 2 invalid_type = 3 OTHERS = 4.
RFC_GET_LOCAL_SERVERS CALL FUNCTION 'RFC_GET_LOCAL_SERVERS' DESTINATION 'NONE' TABLES hosts = lt_hosts EXCEPTIONS not_available = 1 OTHERS = 2.
RFC_SYSTEM_INFO CALL FUNCTION 'RFC_SYSTEM_INFO' DESTINATION ls_rfcdest-rfcdest IMPORTING rfcsi_export = ls_rfcsi EXCEPTIONS system_failure = 1 communication_failure = 2 .
CNV_CDMC_PROTOCOL_LOAD_APL_LOG CALL FUNCTION 'CNV_CDMC_PROTOCOL_LOAD_APL_LOG' DESTINATION ls_rfcdest-rfcdest EXPORTING iv_activity_id = ls_execact-activity_id iv_project_id = iv_projid IMPORTING et_messages = lt_messages EXCEPTIONS communication_failure = 1 system_failure = 2 log_not_found = 3 msg_not_found = 4 OTHERS = 5.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_handle = lt_loghandle i_client = sy-mandt i_exception_if_already_loaded = 'X' EXCEPTIONS no_logs_specified = 1 log_not_found = 2 log_already_loaded = 3 OTHERS = 4.
CNV_CDMC_PROTOCOL_WRITE_LOG CALL FUNCTION 'CNV_CDMC_PROTOCOL_WRITE_LOG' EXPORTING iv_msgty = ls_message-msgty iv_msgid = ls_message-msgid iv_msgno = ls_message-msgno iv_msgv1 = ls_message-msgv1 iv_msgv2 = ls_message-msgv2 iv_msgv3 = ls_message-msgv3 iv_msgv4 = ls_message-msgv4 iv_sysid = sy-sysid iv_log_handle = lv_loghandle EXCEPTIONS log_not_found = 1 OTHERS = 2.
CNV_CDMC_PROTOCOL_WRITE_LOG_DB CALL FUNCTION 'CNV_CDMC_PROTOCOL_WRITE_LOG_DB' EXPORTING iv_client = sy-mandt iv_save_all = 'X' iv_log_handle = lv_loghandle EXCEPTIONS log_not_found = 1 save_not_allowed = 2 numbering_error = 3 not_possible = 4 OTHERS = 5.
CNV_CDMC_PROTOCOL_CREATE_LOG CALL FUNCTION 'CNV_CDMC_PROTOCOL_CREATE_LOG' EXPORTING iv_proj = iv_projid iv_activity = iv_activityid iv_sysid = sy-sysid iv_repid = lv_progname IMPORTING ev_log_handle = xv_loghandle * ev_extnumber = EXCEPTIONS appl_log_error = 1 OTHERS = 2.
CALL FUNCTION 'CNV_CDMC_CC_READ_TABLE' DESTINATION is_rfcdest-rfcdest EXPORTING iv_tabname = 'CNVCDMCCA_RDOM' iv_proj_id = p_projid TABLES et_rdom = lt_rdom EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel OTHERS = 3.
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 CNV_CDMC_CA_CONFIRM_ANALYSIS or its description.
CNV_CDMC_CA_CONFIRM_ANALYSIS - CDMC : Confirm Analysis and import all data to Control Center CNV_CDMC_CA_CONFIRM_ANALYSIS - CDMC : Confirm Analysis and import all data to Control Center CNV_CDMC_CA_COLLECT_UPL_STAT - Program to Collect UPL Statistics in the Solution Manager system CNV_CDMC_CA_COLLECT_UPL_STAT - Program to Collect UPL Statistics in the Solution Manager system CNV_CDMC_CA_COLLECT_TAB_STAT - CDMC: Collect Table Call statistics CNV_CDMC_CA_COLLECT_TAB_STAT - CDMC: Collect Table Call statistics