SAP Reports / Programs

RSDSOSCCM SAP ABAP Report - Data Collector for CCM data from SAPOSCOL







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


Text pool values


Title: Data Collector for CCM data from SAPOSCOL


INCLUDES used within this REPORT RSDSOSCCM

RSALEXTI,
RSALSMI,
RSALSMFI,
RSOSSTRUCT.


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:

GET_CCM_DATA CALL FUNCTION 'GET_CCM_DATA' * EXPORTING * LOCAL_REMOTE = 'LOCAL' * LOGICAL_DESTINATION = IMPORTING f_ccm_data_read = gf_ccm_data_read * ACTIVEFLAG = * INTERVAL = * DETAILSCOLL = * DETAILSREQI = * DETAILSMODE = * LASTCOLLWRT = * LASTCOLLINT = * NORMCOLLINT = TABLES tf_ccm_data = gt_ccm_data EXCEPTIONS internal_error_adress_failed = 1 internal_error_different_field = 2 internal_error_no_new_line = 3 collector_not_running = 4 shared_memory_not_available = 5 collector_busy = 6 version_conflict = 7 no_network_collector_running = 8 system_failure = 9 communication_failure = 10 OTHERS = 11.

SALI_MT_GET_TID_BY_NAME CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' EXPORTING mt_full_name = gcf_sum_name IMPORTING tid = gs_tid_sum detailed_error_text = gf_err_txt 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_MO_CREATE_ATTACH CALL FUNCTION 'SALI_MO_CREATE_ATTACH' EXPORTING parent_tid = gs_tid_sum mo_name = -objectname * NUMRANGE = AL_NR_AUTO * UNIQUENUM = * VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * DESC_TEXT_MSGID = 'RT' * DESC_TEXT_MSGNO = 13 mt_class = gf_mteclass * TOOL_COLLECTING = * TOOL_ONALERT = * TOOL_ANALYZE = IMPORTING new_tid = gs_tid_obj detailed_error_text = gf_err_txt 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 no_more_space = 8 OTHERS = 9.

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING parent_tid = ps_tid_obj mte_name = ps_ccm_data-attributename mte_class = ps_ccm_data-mteclass * MTE_NUMRANGE = AL_NR_AUTO * MTE_UNIQUENUM = * MTE_SEVERITY = 50 * MTE_VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * MTE_KEEPALTYPE = AL_KEEP_NEWEST * MTE_KEEPALMAX = 10 mte_seconds_til_collectingtool = 59 mte_seconds_until_set_inactive = 660 mte_seconds_warmuptime = 300 mte_f1_help_text_msgid = ps_ccm_data-f1_class mte_f1_help_text_msgno = lf_f1_msgno perf_customizing_group = ps_ccm_data-attributegroup perf_subtype = ps_ccm_data-subtype * PERF_RELEVANT_VALUE = AL_PERF_RV_LAST perf_threshold_direction = lf_thresdir perf_threshold_green_to_yellow = ps_ccm_data-perf_thresh_g2y perf_threshold_yellow_to_red = ps_ccm_data-perf_thresh_y2r perf_threshold_yellow_to_green = ps_ccm_data-perf_thresh_y2g perf_threshold_red_to_yellow = ps_ccm_data-perf_thresh_r2y perf_unit_to_display = ps_ccm_data-perf_unit perf_decimals = ps_ccm_data-perf_decimals perf_alert_text_msgid = ps_ccm_data-perf_al_class perf_alert_text_msgno = lf_al_msgno * TOOL_COLLECTING = * TOOL_ONALERT = * TOOL_ANALYZE = * TOOL_TOOLDISPATCHER = 'SAP_CCMS_DEFAULT_TD' IMPORTING new_tid = ls_tid detailed_error_text = gf_err_txt 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 no_more_space = 8 OTHERS = 9.

SALI_PERF_REPORT_VALUE CALL FUNCTION 'SALI_PERF_REPORT_VALUE' EXPORTING total_of_reported_values = ps_ccm_data-perf_l5min_total number_of_reported_values = ps_ccm_data-perf_l5min_number reportedby = sy-repid IMPORTING detailed_error_text = gf_err_txt CHANGING tid = ls_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_MO_ASSIGN_TEXTATTRIBUTE CALL FUNCTION 'SALI_MO_ASSIGN_TEXTATTRIBUTE' EXPORTING tid_of_mo = ps_tid_obj attrname = ps_ccm_data-attributename attrtext = ps_ccm_data-text_value * NUMRANGE = AL_NR_AUTO * UNIQUENUM = 0 * MTE_VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * MTE_SECONDS_TIL_COLLECTINGTOOL = 0 * MTE_SECONDS_UNTIL_SET_INACTIVE = 0 mte_f1_help_text_msgid = ps_ccm_data-f1_class mte_f1_help_text_msgno = lf_f1_msgno mt_class = ps_ccm_data-mteclass * TOOL_COLLECTING = * TOOL_ANALYZE = IMPORTING * NEW_TID = detailed_error_text = gf_err_txt 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 no_more_space = 8 OTHERS = 9.

SALI_SMES_CREATE_ATTACH CALL FUNCTION 'SALI_SMES_CREATE_ATTACH' EXPORTING parent_tid = ps_tid_obj mte_name = ps_ccm_data-attributename mte_class = ps_ccm_data-mteclass * MTE_NUMRANGE = AL_NR_AUTO * MTE_UNIQUENUM = * MTE_SEVERITY = 50 * MTE_VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * MTE_KEEPALTYPE = AL_KEEP_NEWEST * MTE_KEEPALMAX = 10 mte_seconds_til_collectingtool = 59 mte_seconds_until_set_inactive = 660 mte_seconds_warmuptime = 300 mte_f1_help_text_msgid = ps_ccm_data-f1_class mte_f1_help_text_msgno = lf_msgno smes_customizing_group = ps_ccm_data-attributegroup smes_subtype = ps_ccm_data-subtype smes_alert_mode = ps_ccm_data-sta_alert_mode smes_alert_shift = ps_ccm_data-sta_alert_shift * tool_collecting = * tool_onalert = * tool_analyze = * tool_tooldispatcher = 'SAP_CCMS_DEFAULT_TD' IMPORTING new_tid = ls_tid detailed_error_text = gf_err_txt 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 no_more_space = 8 OTHERS = 9.

SALC_UTIL_SNGLMSG_READ_RAWDATA CALL FUNCTION 'SALC_UTIL_SNGLMSG_READ_RAWDATA' * EXPORTING * ONLY_LOCAL = 'X' TABLES tid = lt_tids smesrawtrc = lt_smes_valrc EXCEPTIONS c_call_failed = 1 OTHERS = 2.

SALI_SMES_REPORT_T100_MESSAGE CALL FUNCTION 'SALI_SMES_REPORT_T100_MESSAGE' EXPORTING msgvalue = ps_ccm_data-color msgid = ps_ccm_data-text_class msgno = lf_msgno msgarg1 = ps_ccm_data-parameter1 * argtype1 = 'C' msgarg2 = ps_ccm_data-parameter2 * argtype2 = 'C' msgarg3 = ps_ccm_data-parameter3 * argtype3 = 'C' msgarg4 = ps_ccm_data-parameter4 * argtype4 = 'C' default_msgtext = ps_ccm_data-text_value reportedby = sy-repid IMPORTING detailed_error_text = gf_err_txt CHANGING tid = ls_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_MSC_CREATE_ATTACH CALL FUNCTION 'SALI_MSC_CREATE_ATTACH' EXPORTING parent_tid = ps_tid_obj mte_name = ps_ccm_data-attributename mte_class = ps_ccm_data-mteclass * mte_numrange = AL_NR_AUTO * mte_uniquenum = * mte_severity = 50 * mte_visible_on_userlev = AL_VISIBLE_OPERATOR * mte_keepaltype = AL_KEEP_NEWEST * mte_keepalmax = 10 mte_seconds_til_collectingtool = 59 mte_seconds_until_set_inactive = 660 mte_seconds_warmuptime = 300 mte_f1_help_text_msgid = ps_ccm_data-f1_class mte_f1_help_text_msgno = lf_msgno msc_customizing_group = ps_ccm_data-attributegroup * msc_subtype = AL_STD_MSC_CACHE * msc_raise_value = AL_VAL_GREEN * msc_raise_severity = 255 msc_actual_msg_mode = ps_ccm_data-msc_mode msc_actual_msg_timeframe_minut = ps_ccm_data-msc_time_span_minutes msc_max_alerts_per_msgid = 10 * msc_keep_lines_type = AL_TD_KL_NEWEST msc_keep_lines_max = lf_msc_lines * tool_collecting = * tool_onalert = * tool_analyze = IMPORTING new_tid = ls_tid detailed_error_text = gf_err_txt 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 no_more_space = 8 OTHERS = 9.

SALC_MSC_READ_CACHE CALL FUNCTION 'SALC_MSC_READ_CACHE' EXPORTING only_local = 'X' TABLES tid_read_cache = lt_tid_read msccachelines = lt_msc_value tidrc = lt_tid_rc EXCEPTIONS c_call_failed = 1 OTHERS = 2.

SALI_MSC_REPORT_T100_MESSAGE CALL FUNCTION 'SALI_MSC_REPORT_T100_MESSAGE' EXPORTING value = ps_ccm_data-color * severity = 0 * mandt = SY-MANDT * uname = SY-UNAME * external_msgline_id = ' ' msgid = ps_ccm_data-text_class msgno = lf_msgno msgarg1 = ps_ccm_data-parameter1 * argtype1 = 'C' msgarg2 = ps_ccm_data-parameter2 * argtype2 = 'C' msgarg3 = ps_ccm_data-parameter3 * argtype3 = 'C' msgarg4 = ps_ccm_data-parameter4 * argtype4 = 'C' default_msgtext = ps_ccm_data-text_value reportedby = sy-repid IMPORTING detailed_error_text = gf_err_txt * new_alert_aid = CHANGING tid = ls_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.



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