RSWTTR01 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 RSWTTR01 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 = Started on
Selection Text: P_HANDLE = Trace ID
Selection Text: P_OBJ = Object ID
Selection Text: P_TYPE = Trace Type
Selection Text: P_UNAME = Started by
Title: Display Workflow Trace
Text Symbol: 001 = Binary File (*.BIN)
Text Symbol: 010 = Delete workflow trace
Text Symbol: 011 = Delete Workflow Trace
Text Symbol: 016 = Trace Catalog
Text Symbol: 018 = Function:
Text Symbol: 019 = Structure:
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 = 'RSWTTR01' i_callback_user_command = 'CALL_UCOMM_LOGCAT' i_callback_pf_status_set = 'CALL_STATUS_LOGCAT' is_layout = is_layout it_fieldcat = field_lst * it_sort = it_sort i_save = 'A' is_variant = is_variant TABLES t_outtab = g_logcat_lst EXCEPTIONS OTHERS = 1.
K_KKB_LIST_DISPLAY * call function 'K_KKB_LIST_DISPLAY' * exporting * i_callback_program = 'RSWTTR01' * i_callback_user_command = 'CALL_UCOMM_LOGCAT' * i_callback_top_of_page = 'CALL_TOP_LOGCAT' * i_callback_pf_status_set = 'CALL_STATUS_LOGCAT' * i_tabname = 'G_LOGCAT_LST' * is_layout = is_layout * it_fieldcat = field_lst * tables * t_outtab = g_logcat_lst * exceptions * others = 1.
SWT_TRACE_DETAILS call function 'SWT_TRACE_DETAILS' exporting trace_details = l_swt_logcat.
SWT_TRACE_ENTRY_DETAILS call function 'SWT_TRACE_ENTRY_DETAILS' exporting trace_entry = l_swt_log.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RSWTTR01' i_callback_user_command = 'CALL_UCOMM_LOG' i_callback_pf_status_set = 'CALL_STATUS_LOG' is_layout = is_layout it_fieldcat = field_lst * it_sort = it_sort i_save = 'A' * is_variant = is_variant TABLES t_outtab = g_log_lst EXCEPTIONS OTHERS = 1.
K_KKB_LIST_DISPLAY * call function 'K_KKB_LIST_DISPLAY' * exporting * i_callback_program = 'RSWTTR01' * i_callback_user_command = 'CALL_UCOMM_LOG' * i_callback_pf_status_set = 'CALL_STATUS_LOG' * i_tabname = 'G_LOG_LST' * is_layout = is_layout * it_fieldcat = field_lst * tables * t_outtab = g_log_lst * exceptions * others = 1.
SWT_STRUCTURE_DISPLAY call function 'SWT_STRUCTURE_DISPLAY' exporting struct_name = dataname_lst-structname struct_data =
. "data_lst.
SWA_CONT_BIND_DEBUG_SHOW call function 'SWA_CONT_BIND_DEBUG_SHOW' exporting calling_loopindex = calling_loopindex dataflow = dataflow no_debug_switch = 'X' tables bindefinition = bindefinition called_cont = called_cont calling_cont = calling_cont old_cont = old_cont error = error.
SWB_INTERN_ANALYSIS_DISPLAY call function 'SWB_INTERN_ANALYSIS_DISPLAY' tables condition = condition error_lst = error_lst analysis_lst = analysis container = container.
POPUP_TO_CONFIRM_WITH_VALUE call function 'POPUP_TO_CONFIRM_WITH_VALUE' exporting objectvalue = handle text_after = '' text_before = text-010 titel = text-011 importing answer = answer exceptions text_too_long = 01.
WS_FILENAME_GET * call function 'WS_FILENAME_GET' <--- because of checkman --- * exporting * def_filename = 'TRACELOG.BIN'
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING BIN_FILESIZE = total_len filename = ls_filename FILETYPE = 'BIN' APPEND = ' ' IMPORTING FILELENGTH = total_len tables data_tab = data_lst[] EXCEPTIONS OTHERS = 0.
WS_DOWNLOAD * call function 'WS_DOWNLOAD' * exporting * bin_filesize = total_len * filename = filename * filetype = 'BIN' * mode = 'S' * importing * filelength = total_len * tables * data_tab = data_lst * exceptions * others = 1.
RS_TREE_PUSH call function 'RS_TREE_PUSH'.
RS_TREE_CONSTRUCT call function 'RS_TREE_CONSTRUCT' * EXPORTING * INSERT_ID = '000000' * RELATIONSHIP = ' ' tables nodetab = tree_lst exceptions tree_failure = 1 id_not_found = 2 wrong_relationship = 3 others = 4.
RS_TREE_EXPAND call function 'RS_TREE_EXPAND' exporting node_id = 1 all = 'X' * LIST_SCROLL = * DEPTH = 1 exceptions not_found = 1 others = 2.
RS_TREE_LIST_DISPLAY call function 'RS_TREE_LIST_DISPLAY' exporting callback_program = 'RSWTTR01' callback_user_command = 'LOG_TREE_USER_COMMAND' * CALLBACK_TEXT_DISPLAY = * CALLBACK_MOREINFO_DISPLAY = * CALLBACK_COLOR_DISPLAY = * CALLBACK_TOP_OF_PAGE = callback_gui_status = 'SET_LOG_TREE_STATUS' * STATUS = 'IMPLICIT' * CHECK_DUPLICATE_NAME = '1' * COLOR_OF_NODE = '4' * COLOR_OF_MARK = '3' * COLOR_OF_LINK = '1' * COLOR_OF_MATCH = '5' * LOWER_CASE_SENSITIVE = ' ' * MODIFICATION_LOG = ' ' * NODE_LENGTH = 30 * TEXT_LENGTH = 75 * TEXT_LENGTH1 = 0 * TEXT_LENGTH2 = 0 * RETURN_MARKED_SUBTREE = ' ' screen_start_column = 5 screen_start_line = 5 screen_end_column = 70 screen_end_line = 15.
RS_TREE_POP call function 'RS_TREE_POP'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.