RSWIDIAG 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 RSWIDIAG 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.
Selection Text: TIME = Creation Date
Selection Text: TASK = Task Filter
Title: Diagnosis of workflows with errors
Text Symbol: TXI = Work Item
Text Symbol: TXH = Error cause
Text Symbol: TOP = Errors overall:
Text Symbol: 999 = Misc
Text Symbol: 034 = Binding from workflow to event
Text Symbol: 033 = Binding from workflow to rule
Text Symbol: 032 = Binding from work item to workflow
Text Symbol: 031 = Binding from workflow to work item
Text Symbol: 024 = Latest end: Deadline is in the past
Text Symbol: 023 = Desired end: Deadline is in the past
Text Symbol: 022 = Latest start: Deadline is in the past
Text Symbol: 021 = Desired start: Deadline is in the past
Text Symbol: 006 = Latest end: Recipient when deadline missed
Text Symbol: 005 = Desired end: Recipient when deadline missed
Text Symbol: 004 = Latest start: Recipient when deadline missed
Text Symbol: 003 = Notification agent (completion)
Text Symbol: 002 = Excluded agents
Text Symbol: 001 = Agents
INCLUDE RSWUINCL.
INCLUDE RSWLFCOD.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_HIERSEQ_LIST_DISPLAY call function 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' exporting i_callback_program = g_repid i_callback_pf_status_set = g_status_set i_callback_user_command = g_user_command is_layout = gs_layout it_fieldcat = gt_fieldcat[] it_events = gt_events[] i_tabname_header = g_tabname_header i_tabname_item = g_tabname_item i_structure_name_header = 'SWI_ERRO_H' i_structure_name_item = 'SWI_ERRO_I' is_keyinfo = gs_keyinfo tables t_outtab_header = gt_header_table t_outtab_item = gt_item_table exceptions program_error = 1 others = 2.
SWI_ERROR_OVERVIEW call function 'SWI_ERROR_OVERVIEW' exporting with_tables = 'X' time = gs_time importing error_total = error_total tables task_filter = gt_task_filter statistic = statistic workitems = workitems.
REUSE_ALV_COMMENTARY_WRITE * call function 'REUSE_ALV_COMMENTARY_WRITE' * exporting * it_list_commentary = gt_list_top_of_page.
REUSE_ALV_EVENTS_GET call function 'REUSE_ALV_EVENTS_GET' exporting i_list_type = 0 importing et_events = rt_events.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.