SLSPAWR6 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is useful for displaying the PAW Test Structure...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter SLSPAWR6 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL76 - PAW - Test Structure Display
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_TESTID = Test
Title: PAW - Test Structure Display
Text Symbol: 110 = GUI initialization error
Text Symbol: 111 = Error occurred during initialization of GUI displa
Text Symbol: 112 = Note program details and then
Text Symbol: 113 = contact your system administrator.
Text Symbol: 200 = Refresh
Text Symbol: 201 = Test Selection
Text Symbol: 216 = Usage options
Text Symbol: 250 = Information
Text Symbol: 251 = Selection of test-structure failed !
Text Symbol: 252 = Please consult your system administrator.
Text Symbol: 401 = Test Structure
Text Symbol: 402 = Test Structure Display
Text Symbol: 913 = Data collection complete !
Text Symbol: 929 = Sorting..
Text Symbol: 930 = Preparing output...
Text Symbol: 950 = Selecting Test Structure
INCLUDE: SLSPEWI2.
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = p_repid TABLES selection_table = sel_tab.
SLS_TST_GET_STRUCTURE_DETAILS CALL FUNCTION 'SLS_TST_GET_STRUCTURE_DETAILS' EXPORTING p_testid = p_testid TABLES pt_test_structure = it_tstruc EXCEPTIONS no_testid_specified = 1 error_selecting_test_structure = 2 error_selecting_test_details = 3 error_selecting_subtest = 4 error_selecting_pu = 5 error_selecting_item = 6 OTHERS = 7.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(250) p_infoline1 = 'Selection of test-structure failed !'(251) p_infoline2 = 'Please consult your system administrator.'(252)
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = p_text.
SLS_MISC_SHOW_MESSAGE_TAB CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE_TAB' TABLES p_messages = it_messages.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SLS_TSTRIO' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = pit_lv_fc.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = text-110 p_infoline1 = text-111 p_infoline2 = text-112 p_infoline3 = text-113.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.