SAP Reports / Programs

CNV_CDOP_CA_COLLECT_STAT SAP ABAP Report - Read statistic file on application server







CNV_CDOP_CA_COLLECT_STAT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Collection of the statistics from CCMS...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 CNV_CDOP_CA_COLLECT_STAT into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT CNV_CDOP_CA_COLLECT_STAT. "Basic submit
SUBMIT CNV_CDOP_CA_COLLECT_STAT AND RETURN. "Return to original report after report execution complete
SUBMIT CNV_CDOP_CA_COLLECT_STAT VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_CUST = Only Customer Objects
Selection Text: P_FILTER = Customer + Customized Objects
Title: Read statistic file on application server
Text Symbol: 001 = Statistics Evaluation : Object Selection Parameters


INCLUDES used within this REPORT CNV_CDOP_CA_COLLECT_STAT

INCLUDE CNV_CDOP_CA_COLLECT_STAT_TOP.
INCLUDE CNV_CDOP_CC_STATUS_MACROS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES list = gt_application_servers EXCEPTIONS no_server_list = 1 OTHERS = 2.

CNV_CDOP_CA_STAT_EVAL CALL FUNCTION 'CNV_CDOP_CA_STAT_EVAL' DESTINATION gs_application_server-name STARTING NEW TASK gv_taskname PERFORMING collect_statistics_records ON END OF TASK EXPORTING iv_start_date = gs_stat_collect-start_date iv_start_time = gs_stat_collect-start_time TABLES it_clients = gt_productive_clients et_stat_recs = gt_stat_results EXCEPTIONS communication_failure = 1 MESSAGE sy-lisel system_failure = 2 MESSAGE sy-lisel open_file_error = 3 internal_error = 4 OTHERS = 5.

CNV_CDOP_CA_STAT_EVAL CALL FUNCTION 'CNV_CDOP_CA_STAT_EVAL' EXPORTING iv_start_date = gs_stat_collect-start_date iv_start_time = gs_stat_collect-start_time TABLES it_clients = gt_productive_clients et_stat_recs = gt_stat_results EXCEPTIONS open_file_error = 1 internal_error = 2 OTHERS = 3.

FUNCTION_INCLUDE_INFO CALL FUNCTION 'FUNCTION_INCLUDE_INFO' CHANGING funcname = lv_funcname group = lv_fugrname EXCEPTIONS function_not_exists = 1 include_not_exists = 2 group_not_exists = 3 no_selections = 4 no_function_include = 5 OTHERS = 6.

PUT_CHECK_NAME_CLASS CALL FUNCTION 'PUT_CHECK_NAME_CLASS' EXPORTING wi_object = iv_obj_type wi_objname = lv_obj_name wi_pgmid = lc_pgmid IMPORTING we_name_class = lv_nameclass.

TRINT_OBJECT_NAMESPACE_INFO CALL FUNCTION 'TRINT_OBJECT_NAMESPACE_INFO' EXPORTING iv_pgmid = lc_pgmid iv_object = iv_obj_type iv_objname = lv_obj_name IMPORTING ev_nameclass = lv_nameclass ev_namespace = lv_namespace EXCEPTIONS invalid_object = 3 OTHERS = 4.

BP_JOB_SELECT_SM37B CALL FUNCTION 'BP_JOB_SELECT_SM37B' EXPORTING jobselect_dialog = 'N' jobsel_param_in = lv_jobsel TABLES jobselect_joblist_b = lt_job_prg.



Contribute (Add Comments)

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_CDOP_CA_COLLECT_STAT or its description.