SLSPAWL3 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report is useful for displaying the PAW- Customizing settings and values created using the TA SL93( PAW Maintain Settings Transaction )...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 SLSPAWL3 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL62 - PAW - Lookup Definition Tree
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 Settings
Text Symbol: 110 = Automation queue error
Text Symbol: 111 = Internal error
Text Symbol: 112 = Method in automation queue
Text Symbol: 113 = caused an error.
Text Symbol: 130 = Fixed system settings
Text Symbol: 131 = Customer-specific settings
Text Symbol: 301 = Selecting Settings ...
Text Symbol: 302 = Selection complete - preparing output ...
Text Symbol: 401 = Settings
Text Symbol: 402 = Settings by origination and type
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
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 = p_text.
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'sls_lookv' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = it_lv_fc.
SLS_CUST_GET_LOOKUP_VALUES CALL FUNCTION 'SLS_CUST_GET_LOOKUP_VALUES' EXPORTING p_lookup = '*' p_language = '*' TABLES p_lookup_values = it_lookup_values EXCEPTIONS no_lookup_values_found = 0 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.