RSSQDY02 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Online program This program gives a detailed overview of the SQL-DB run-time environment using the external program "sysmon"...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 RSSQDY02 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.
Title: SAP DB: Runtime Environment
Text Symbol: 000 = MaxDB - Runtime Environment
Text Symbol: 001 = Process name
Text Symbol: 003 = Proc. ID
Text Symbol: 005 = Dispatch counter
Text Symbol: 007 = Active tasks
Text Symbol: 009 = Total tasks
Text Symbol: 011 = Database processes
Text Symbol: 012 = Volume:
Text Symbol: 014 = Reads
Text Symbol: 016 = Writes
Text Symbol: 018 = *Total*
Text Symbol: 019 = I/O via UKP and device processes
Text Symbol: 020 = User kernel processes
INCLUDE RSSQDINF05. " STD HEADER
No SAP DATABASE tables are accessed within this REPORT code!
GET_UKTHREADS_SDB CALL FUNCTION 'GET_UKTHREADS_SDB' TABLES thread_list = ukprocs_tab.
GET_SPECIAL_THREAD_SDB CALL FUNCTION 'GET_SPECIAL_THREAD_SDB' TABLES thread_list = dbprocs_tab.
GET_DEVIOTHREAD_SDB CALL FUNCTION 'GET_DEVIOTHREAD_SDB' TABLES devio_list = devioprocs_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.