SLSPAWL2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Location Test Catalog Displaying the Locations and Test-Catalog from PAW - Test catalog Definitions ( SL32 )...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 SLSPAWL2 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL63 - PAW - Location Test-Catalog
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: PAW - Display test catalog
Text Symbol: 134 = Language text could not be read.
Text Symbol: 133 = system administrator
Text Symbol: 132 = Contact your
Text Symbol: 131 = Test catalog could not be read.
Text Symbol: 130 = Error occurred.
Text Symbol: 127 = Certificate Name
Text Symbol: 126 = Certificate Type
Text Symbol: 125 = GUID - unique key of KW info object
Text Symbol: 124 = Context field: country
Text Symbol: 123 = Context field: release
Text Symbol: 122 = Context field: extension/industry
Text Symbol: 121 = End date of test administration
Text Symbol: 120 = Start date of test administration
Text Symbol: 113 = caused an error.
Text Symbol: 112 = Method in automation queue
Text Symbol: 111 = Internal error
Text Symbol: 110 = Automation queue error
Text Symbol: 107 = Reading language texts...
Text Symbol: 106 = Reading plan variant...
Text Symbol: 105 = Reading test catalog...
Text Symbol: 104 = Selection complete. Preparing output...
Text Symbol: 103 = PAW locations
Text Symbol: 102 = Test location
Text Symbol: 101 = Location
Text Symbol: 021 = Release
Text Symbol: 020 = Enhancement
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SLS_CUST_GET_PLAN_VARIANT CALL FUNCTION 'SLS_CUST_GET_PLAN_VARIANT' IMPORTING p_plvar = v_lookup_value.
SLS_IOA_GET_TEST_CATALOG CALL FUNCTION 'SLS_IOA_GET_TEST_CATALOG' EXPORTING p_plvar = v_plvar TABLES p_loccat = it_test_cat EXCEPTIONS no_location_found = 1 unknown_exception = 2 OTHERS = 3.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Error occurred.'(130)
SLS_MISC_GET_LANGUAGE_TEXT CALL FUNCTION 'SLS_MISC_GET_LANGUAGE_TEXT' EXPORTING p_spras = it_test_cat-var4 p_isomode = 'N' IMPORTING p_lang = is_lang EXCEPTIONS sap_language_key_not_specified = 1 iso_language_code_missing = 2 OTHERS = 3.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Error occurred.'(130)
SLS_IOA_GET_LOCATION_INFO CALL FUNCTION 'SLS_IOA_GET_LOCATION_INFO' EXPORTING p_iplvar = it_test_cat-plvar p_locid = v_locid IMPORTING p_loctx = v_loctx.
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.
SLS_MISC_SHOW_ABOUT CALL FUNCTION 'SLS_MISC_SHOW_ABOUT' EXPORTING p_report_name = v_report_name p_report_version = v_version.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = v_msg.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'SLS_LOCTTY' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = it_lv_fc.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.