SAP Reports / Programs

RSDB4DMP SAP ABAP Report - iSeries: Dump DBMon Info Depending on Current Timestamp







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


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


Text pool values


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.


INCLUDES used within this REPORT RSDB4DMP

No INCLUDES are used within this REPORT code!


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:

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.



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