RSSQDM01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Background Report This report stores "Snapshots" of database key figures in the performance database MONI...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 RSSQDM01 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: Batch for Writing Snapshots to MONI
Text Symbol: 066 = Objects are missing
Text Symbol: 067 = DB Tables without DB indexes
Text Symbol: 068 = DB indexes without DB tables
Text Symbol: 069 = Transp. DDIC Tables without DB Tables
Text Symbol: 070 = DDIC Pools/Clusters without DB Tables
Text Symbol: 071 = Missing primary keys
Text Symbol: 072 = Missing primary keys of pool/cluster Tables
Text Symbol: 073 = DDIC indexes without DB indexes
Text Symbol: 074 = DB tables without DDIC tables
Text Symbol: 075 = DB indexes without DDIC indexes
INCLUDE RSSQDIN0.
INCLUDE RSSQDINF01.
INCLUDE RSSQDINF03.
INCLUDE RSSQDINF05.
INCLUDE RSSQDMON .
INCLUDE RSSQDCH5 .
INCLUDE RSSQDT2F .
INCLUDE RSSQDGDB.
INCLUDE RSSQDMIN.
No SAP DATABASE tables are accessed within this REPORT code!
CHECK_DB_SAP_CONSISTENCY CALL FUNCTION 'CHECK_DB_SAP_CONSISTENCY' EXPORTING conscheck = 'ALL' IMPORTING no_dbtables = no_dbtables no_saptables = no_saptables no_dbindices = no_dbindices no_sapindices = no_sapindices TABLES miss_index = miss_index addtl_index = addtl_index.
SEL_SERVERDBSTATISTICS_ADA CALL FUNCTION 'SEL_SERVERDBSTATISTICS_ADA' IMPORTING serverdbstatistics = serverdbstatistics EXCEPTIONS table_not_found = 1 no_entry_found = 2 OTHERS = 3.
GET_LOG_STATE CALL FUNCTION 'GET_LOG_STATE' IMPORTING capacity = log_size percent = pct_log_used used = log_used EXCEPTIONS db_version_not_supported = 1 table_not_found = 2 entry_not_found = 3 error_get_db_info_ada = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.