SAP Reports / Programs | Basis Components | Basis Services / Communication Interfaces | License Measurement(BC-SRV-LIM) SAP BC

CCUMEAS SAP ABAP Report - Measurement of Concurrent Users: Determine No. of CCUs every 5 Minutes







CCUMEAS 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 CCUMEAS 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 CCUMEAS. "Basic submit
SUBMIT CCUMEAS AND RETURN. "Return to original report after report execution complete
SUBMIT CCUMEAS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Measurement of Concurrent Users: Determine No. of CCUs every 5 Minutes


INCLUDES used within this REPORT CCUMEAS

No INCLUDES are used within this REPORT code!


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:

SALI_MC_CREATE_ATTACH CALL FUNCTION 'SALI_MC_CREATE_ATTACH' EXPORTING mcname = context_name numrange = al_nr_auto owner = 'SAP_CCMS' "#EC NOTEXT * SEGMENT = mt_class = context_class sysid = sy-sysid systemwide_context = 'X' visible_on_userlev = al_visible_operator desc_text_msgid = 'RT' desc_text_msgno = 395 * tool_collecting = * TOOL_ONALERT = * TOOL_ANALYZE = * tool_tooldispatcher = 'SAP_CCMS_DEFAULT_TD' IMPORTING root_tid = context_tid EXCEPTIONS unable_to_expand_name = 1 segment_not_found = 2 communication_failure = 3 other_problem = 4 wrong_segment = 5 OTHERS = 6.

CCUMEAS CALL FUNCTION 'CCUMEAS' EXPORTING correct_server = correct_server IMPORTING global_count = global_count TABLES client_count = client_count EXCEPTIONS no_values = 1 OTHERS = 2.

SALI_MO_CREATE_ATTACH CALL FUNCTION 'SALI_MO_CREATE_ATTACH' EXPORTING parent_tid = context_tid mo_name = object_name numrange = al_nr_auto uniquenum = 2 visible_on_userlev = al_visible_operator desc_text_msgid = 'UV' desc_text_msgno = 030 mt_class = object_class * tool_collecting = * TOOL_ONALERT = * TOOL_ANALYZE = * tool_tooldispatcher = 'SAP_CCMS_DEFAULT_TD' IMPORTING new_tid = object_tid EXCEPTIONS invalid_tid = 1 unable_to_expand_name = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING parent_tid = object_tid mte_name = attribute_name_global mte_class = attribute_class_global mte_numrange = al_nr_auto mte_uniquenum = 3 mte_severity = 0 mte_visible_on_userlev = al_visible_operator mte_keepaltype = al_keep_newest mte_keepalmax = 0 mte_seconds_til_collectingtool = 0 mte_seconds_until_set_inactive = 0 * MTE_SECONDS_WARMUPTIME = 0 mte_f1_help_text_msgid = 'UV' mte_f1_help_text_msgno = 031 perf_customizing_group = attribute_cust_group * PERF_SUBTYPE = AL_STD_NO_SUBCLASS perf_relevant_value = al_perf_rv_last perf_threshold_direction = al_threshdir_above perf_threshold_green_to_yellow = 999999999 perf_threshold_yellow_to_red = 999999999 perf_threshold_yellow_to_green = 999999998 perf_threshold_red_to_yellow = 999999998 perf_unit_to_display = 'Usrs' "#EC NOTEXT perf_decimals = 0 * PERF_ALERT_TEXT_MSGID = 'RT' * PERF_ALERT_TEXT_MSGNO = 001 * tool_collecting = * TOOL_ONALERT = * TOOL_ANALYZE = * tool_tooldispatcher = 'SAP_CCMS_DEFAULT_TD' IMPORTING new_tid = attribute_tid EXCEPTIONS invalid_tid = 1 unable_to_expand_name = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_PERF_REPORT_VALUE CALL FUNCTION 'SALI_PERF_REPORT_VALUE' EXPORTING total_of_reported_values = current_count number_of_reported_values = 1 reportedby = 'CCUMEAS' CHANGING tid = attribute_tid EXCEPTIONS invalid_tid = 1 wrong_typeclass = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING parent_tid = object_tid mte_name = attribute_name_client mte_class = attribute_class_client mte_numrange = al_nr_auto mte_uniquenum = 0 mte_severity = 0 mte_visible_on_userlev = al_visible_operator mte_keepaltype = al_keep_newest mte_keepalmax = 0 mte_seconds_til_collectingtool = 0 mte_seconds_until_set_inactive = 0 * MTE_SECONDS_WARMUPTIME = 0 mte_f1_help_text_msgid = 'UV' mte_f1_help_text_msgno = 032 perf_customizing_group = attribute_cust_group * PERF_SUBTYPE = AL_STD_NO_SUBCLASS perf_relevant_value = al_perf_rv_last perf_threshold_direction = al_threshdir_above perf_threshold_green_to_yellow = 999999999 perf_threshold_yellow_to_red = 999999999 perf_threshold_yellow_to_green = 999999998 perf_threshold_red_to_yellow = 999999998 perf_unit_to_display = 'Usrs' perf_decimals = 0 * PERF_ALERT_TEXT_MSGID = 'RT' * PERF_ALERT_TEXT_MSGNO = 001 * tool_collecting = * TOOL_ONALERT = * TOOL_ANALYZE = * tool_tooldispatcher = 'SAP_CCMS_DEFAULT_TD' IMPORTING new_tid = attribute_tid EXCEPTIONS invalid_tid = 1 unable_to_expand_name = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_PERF_REPORT_VALUE CALL FUNCTION 'SALI_PERF_REPORT_VALUE' EXPORTING total_of_reported_values = current_count number_of_reported_values = 1 reportedby = 'CCUMEAS' CHANGING tid = attribute_tid EXCEPTIONS invalid_tid = 1 wrong_typeclass = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_MT_GET_TID_BY_NAME CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' EXPORTING mt_full_name = '\&SY\System Configuration\' "#EC NOTEXT IMPORTING tid = bad_tree_tid EXCEPTIONS unable_to_expand_name = 1 name_not_found = 2 communication_failure = 3 other_problem = 4 internal_error = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALI_MT_GET_TID_BY_NAME CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' EXPORTING mt_full_name = '\&SY\SystemConfiguration\' IMPORTING tid = bad_tree_tid EXCEPTIONS unable_to_expand_name = 1 name_not_found = 2 communication_failure = 3 other_problem = 4 internal_error = 5 wrong_segment = 6 internal_failure_sals = 7 OTHERS = 8.

SALR_MTE_READ_GENERAL CALL FUNCTION 'SALR_MTE_READ_GENERAL' EXPORTING tid = bad_tree_tid IMPORTING general_info = bad_tree_general_info * general_customization = * general_values = * collecting_tool_def = * onalert_tool_def = * analyze_tool_def = * collecting_tool_run = * onalert_tool_run = * TABLES * ALERTS = EXCEPTIONS invalid_tid = 1 communication_problem = 2 internal_error = 3 other_problem = 4 OTHERS = 5.

SALC_MT_RESET CALL FUNCTION 'SALC_MT_RESET' * EXPORTING * ONLY_LOCAL = ' ' TABLES tid_user = reset_tid tidrc = reset_rc EXCEPTIONS c_call_failed = 1 OTHERS = 2.

SALI_MT_MARK_FOR_DESTRUCTION CALL FUNCTION 'SALI_MT_MARK_FOR_DESTRUCTION' EXPORTING tid = bad_tree_tid EXCEPTIONS invalid_tid = 1 communication_failure = 2 other_problem = 3 permission_denied = 4 wrong_segment = 5 internal_failure_sals = 6 OTHERS = 7.



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