RSL_WSP_REPAIR_LOG_DISPLAY 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 RSL_WSP_REPAIR_LOG_DISPLAY 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: Evaluate Repair Log
Text Symbol: 001 = Repair BW Workspaces: Evaluate Application Log
Text Symbol: 002 = Repair BW Workspaces: Display Logs
INCLUDE SBAL_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
APPL_LOG_DISPLAY CALL FUNCTION 'APPL_LOG_DISPLAY' EXPORTING object = 'RSWSP' object_attribute = 1 subobject = 'COPR_REPAIR' subobject_attribute = 1 external_number = space external_number_attribute = 0 title_list_screen = 'BW Workspaces reparieren: Protokolle anzeigen'(002) title_selection_screen = 'BW Workspaces reparieren: Anwendungslog auswerten'(001) date_from = sy-datum "#EC DOM_EQUAL date_to = sy-datum "#EC DOM_EQUAL time_to = '235959' "#EC DOM_EQUAL external_number_display_length = 20 i_variant_report = l_repid i_s_display_profile = l_s_display_profile EXCEPTIONS no_authority = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.