SLSPAWT2 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 SLSPAWT2 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL69 - PAW - Qualification Transfer Log.
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_START = Event start from
Selection Text: P_PLVAR = Plan variant
Selection Text: P_LOCID = Location ID
Selection Text: P_END = Event start to
Title: PAW - Qualification Transfer Log
Text Symbol: 312 = December
Text Symbol: 311 = November
Text Symbol: 310 = October
Text Symbol: 309 = September
Text Symbol: 308 = August
Text Symbol: 307 = July
Text Symbol: 306 = June
Text Symbol: 305 = May
Text Symbol: 304 = April
Text Symbol: 303 = March
Text Symbol: 302 = February
Text Symbol: 301 = January
Text Symbol: 201 = Selection timeframe
Text Symbol: 167 = Contact your system administrator
Text Symbol: 166 = An error occured during data selection.
Text Symbol: 165 = Problem
Text Symbol: 164 = Selection criterias have not been specified correctly !
Text Symbol: 163 = Information
Text Symbol: 162 = for the specified location.
Text Symbol: 161 = You do not have authorization to view data
Text Symbol: 160 = Authorization failed
Text Symbol: 123 = selection criteria.
Text Symbol: 122 = No log entries found for specified
Text Symbol: 121 = No data found.
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: 102 = Events by month
Text Symbol: 101 = Events
INCLUDE: SLSPEWI2.
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_plvar_get .
SLS_PR_GET_QTRANSFER_LOG call function 'SLS_PR_GET_QTRANSFER_LOG' exporting p_earliest_begin = p_start p_latest_begin = p_end tables p_locids = it_locids p_qlog = it_qlog exceptions no_locations_due_to_auth_check = 1 no_location_ids_specified = 2 no_log_entries_found = 3 authorization_not_possible = 4 others = 5 .
SLS_MISC_SHOW_MESSAGE call function 'SLS_MISC_SHOW_MESSAGE' exporting p_title = 'Authorization failed'(160) p_infoline1 = 'You do not have authorization to view data'(161) p_infoline2 = 'for the specified location.'(162) .
SLS_MISC_SHOW_MESSAGE call function 'SLS_MISC_SHOW_MESSAGE' exporting p_title = 'Information'(163) p_infoline1 = 'Selection criterias have not been specified correctly !'(164).
SLS_MISC_SHOW_MESSAGE call function 'SLS_MISC_SHOW_MESSAGE' exporting p_title = 'No data found. '(121)
SLS_MISC_SHOW_MESSAGE call function 'SLS_MISC_SHOW_MESSAGE' exporting p_title = 'Problem'(165) p_infoline1 = 'An error occured during data selection.'(166)
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 .
LVC_FIELDCATALOG_MERGE call function 'LVC_FIELDCATALOG_MERGE' exporting i_structure_name = 'SLS_QLOG' 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.