RSWDLOG 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 RSWDLOG 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: P_DATE = From Date
Selection Text: P_TASK = Workflow
Selection Text: S_DATE = From Date
Title: Technical Log of Workflow Definition
Text Symbol: D01 = Delete Technical Log
Text Symbol: D02 = Do you want to delete all data records?
Text Symbol: T01 = Technical Log of Workflow:
Text Symbol: T02 = from Date:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SWD_CHECK_ORG_OBJECT_EXISTS CALL FUNCTION 'SWD_CHECK_ORG_OBJECT_EXISTS' CHANGING act_object_ext = p_task EXCEPTIONS org_object_not_found = 1 OTHERS = 2.
SWD_HELP_F4_MULTISTEP_TASK CALL FUNCTION 'SWD_HELP_F4_MULTISTEP_TASK' EXPORTING IM_TASK = p_task IMPORTING EX_TASK = p_task EXCEPTIONS OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SWDILOG' CHANGING ct_fieldcat = lt_fcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_grid_title = ls_layout-window_titlebar i_background_id = 'ALV_BACKGROUND' i_buffer_active = 'X' I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' i_callback_program = c_repid is_layout = ls_layout it_fieldcat = lt_fcat * it_excluding = gt_excl_func it_sort = lt_sort TABLES t_outtab = gt_log.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = text-d01 TEXT_QUESTION = text-d02 DEFAULT_BUTTON = '2' DISPLAY_CANCEL_BUTTON = ' ' IMPORTING ANSWER = l_answer EXCEPTIONS OTHERS = 0.
REUSE_ALV_GRID_LAYOUT_INFO_GET CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_GET' IMPORTING es_layout = ls_layout EXCEPTIONS OTHERS = 1.
REUSE_ALV_GRID_LAYOUT_INFO_SET CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_SET' EXPORTING is_layout = ls_layout.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.