SAP Reports / Programs

RSDSOSCO SAP ABAP Report - OS Data Collector for Operating System Data







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


Text pool values


Title: OS Data Collector for Operating System Data


INCLUDES used within this REPORT RSDSOSCO

INCLUDE RSALEXTI.
INCLUDE RSALOLDI.


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_MT_GET_TID_BY_NAME CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' EXPORTING mt_full_name = sum_os_fullname IMPORTING tid = ms_os_summary_tid EXCEPTIONS unable_to_expand_name = 1 name_not_found = 2 communication_failure = 3 other_problem = 4 OTHERS = 5.

FILL_SNAPSHOT_DATA CALL FUNCTION 'FILL_SNAPSHOT_DATA' * IMPORTING * F_CPU_ALL_READ = CPU_ALL_READ * F_MEM_ALL_READ = TA_MEM_ALL_READ * F_DISK_SINGLE_READ = DISK_SINGLE_READ * F_LAN_SINGLE_READ = LAN_SINGLE_READ * F_TOP_SINGLE_READ = TOP_SINGLE_READ * TAB_TYPE = TAB_TYP * ACTIVEFLAG = ACTIVEFLAG * INTERVAL = INTERVAL * DETAILSCOLL = DETAILSCOLL * DETAILSREQI = DETAILSREQI * DETAILSMODE = DETAILSMODE * LASTCOLLWRT = LASTCOLLWRT * LASTCOLLINT = LASTCOLLINT * NORMCOLLINT = NORMCOLLINT TABLES tf_cpu_all = p_ta_cpu_all tf_mem_all = p_ta_mem_all tf_disk_single = p_ta_disk_single tf_lan_single = p_ta_lan_single tf_top_single = p_ta_top_single tf_spag_all = p_ta_spag_all tf_stor_all = p_ta_stor_all tf_pool_single = p_ta_pool_single EXCEPTIONS internal_error_adress_failed = 01 internal_error_different_field = 02 internal_error_no_new_line = 03 collector_not_running = 04 shared_memory_not_available = 05 collector_busy = 06 version_conflict = 07 no_network_collector_running = 08 system_failure = 09 communication_failure = 10 OTHERS = 999.

SALI_MT_GET_TID_BY_NAME call function 'SALI_MT_GET_TID_BY_NAME' exporting mt_full_name = os_col_state_fullname importing tid = ls_os_state_tid exceptions others = 99.

SALC_TOOL_GET_EFFECTIVE call function 'SALC_TOOL_GET_EFFECTIVE' exporting only_local = 'X' tables tid_which_tool = lt_whichtool tool_effective_rc = lt_tool exceptions others = 99.



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