RSTSTENQ 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 RSTSTENQ 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: Enqueue Performance Test Driver: Dialog Surface
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TH_SERVER_LIST CALL FUNCTION 'TH_SERVER_LIST' TABLES LIST = SRV_TBL EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR cALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = SRVNAME.
RZL_STRG_WRITE_I CALL FUNCTION 'RZL_STRG_WRITE_I' EXPORTING NAME = surface_report_name SRVNAME = SRVNAME VALUE = UPD VALUE1 = ENQ_TA_1 VALUE2 = ENQ_TA_2 VALUE3 = ENQ_TA_3 VALUE4 = ENQ_TA_4 VALUE5 = ENQ_TA_5 VALUE6 = ENQ_TA_6 VALUE7 = ENQ_TA_7 VALUE8 = ENQ_TA_8 VALUE9 = WAIT EXCEPTIONS OTHERS = 1.
RZL_SUBMIT CALL FUNCTION 'RZL_SUBMIT' STARTING NEW TASK TASKNAME DESTINATION SRVNAME EXPORTING REPID = workthread_report_NAME EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR cALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = ' '.
SAPGUI_PROGRESS_INDICATOR cALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = SRVNAME.
RZL_STRG_DEL CALL FUNCTION 'RZL_STRG_DEL' EXPORTING NAME = surface_report_name SRVNAME = SRVNAME TYP = 'I' EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.