RSWTDREQ 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 RSWTDREQ into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SWTREORG - Reorganization Trace for Requests
SWTREQ - Analyze Workflow Trace for Requests
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.
Selection Text: DURA = Duration
Selection Text: ID = Identification
Selection Text: TOPREQ = Top-Requests Only
Selection Text: TSP = Time Stamp
Selection Text: TYPE = Type
Selection Text: USER = User
Title: Workflow: Analysis of Request Trace
Text Symbol: 001 = Reorganization of Workflow Trace for Requests
Text Symbol: 010 = Display Workflow Request
Text Symbol: A01 = Selection Using Work Item ID
Text Symbol: A02 = Selection Using Request Properties
Text Symbol: A03 = Additional options
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_report_name i_callback_user_command = 'CALL_UCOMM' i_callback_pf_status_set = 'CALL_STATUS' is_layout = is_layout it_fieldcat = field_lst it_sort = it_sort i_save = 'A' is_variant = is_variant TABLES t_outtab = g_trace_data EXCEPTIONS OTHERS = 1.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = structure_name CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
SWF_CNT_INSTANCE_EDITOR CALL FUNCTION 'SWF_CNT_INSTANCE_EDITOR' EXPORTING container_ref = l_cnt display = 'X' only_oblig_elements = ' ' title = l_title IMPORTING cancelled = l_cancelled.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.