RSDB4DMP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report to be executed by the AutoABAP program SAPMSSY6 to get current information about database activity from the memory-based SQL database monitor...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 RSDB4DMP 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: iSeries: Dump DBMon Info Depending on Current Timestamp
Text Symbol: 001 = RSDB4UPD could not be generated
Text Symbol: 002 = Error updating DBmon configuration
Text Symbol: 003 = DBMonitor configuration successfully updated.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DB4_GET_DBMON_ENABLE_VALUE call function 'DB4_GET_DBMON_ENABLE_VALUE' importing dbmon_enable_shm = as4_dbmon_enable_value.
JOB_OPEN call function 'JOB_OPEN' "create background job exporting jobname = i_jobname importing jobcount = i_jobcount exceptions cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 others = 4.
JOB_CLOSE call function 'JOB_CLOSE' "execute background job now exporting jobcount = i_jobcount jobname = i_jobname strtimmed = 'X' exceptions others = 99.
BP_JOB_DELETE call function 'BP_JOB_DELETE' exporting jobcount = i_jobcount jobname = i_jobname exceptions others = 99.
TH_SERVER_LIST call function 'TH_SERVER_LIST' tables list = i_server_list exceptions no_server_list = 1 others = 2.
TH_GET_PROFILE_VALUE CALL FUNCTION 'TH_GET_PROFILE_VALUE' EXPORTING NAME = 'as4/dbmon/enable' SERVER = i_server_list-name IMPORTING VALUE = i_as4_dbmon_enable EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
JOB_OPEN call function 'JOB_OPEN' "create background job exporting jobname = l_jobname importing jobcount = l_jobcount exceptions cant_create_job = 1 invalid_job_data = 2 jobname_missing = 3 others = 4.
JOB_CLOSE call function 'JOB_CLOSE' "execute background job now exporting jobcount = l_jobcount jobname = l_jobname strtimmed = 'X' exceptions others = 99.
BP_JOB_DELETE call function 'BP_JOB_DELETE' exporting jobcount = l_jobcount jobname = l_jobname exceptions others = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSDB4DMP - iSeries: Dump DBMon Info Depending on Current Timestamp RSDB4DMP - iSeries: Dump DBMon Info Depending on Current Timestamp RSDB4DLT - Report for displaying tables with deleted records. RSDB4DLT - Report for displaying tables with deleted records. RSDB4DDC - iSeries: Display Data Dictionary Information (Overview) within ST04 RSDB4DDC - iSeries: Display Data Dictionary Information (Overview) within ST04