SLSPAWT6 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 SLSPAWT6 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL74 - PAW - Batch Q.- Generation Protocol
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_PLVAR = Plan variant
Selection Text: P_EVEID = Event ID
Selection Text: P_ATTEM =
Title: PAW - Batch Qualification Transfer Protocol
Text Symbol: 813 = Information
Text Symbol: 812 = Refreshing Display ...
Text Symbol: 811 = No protocol records have been deleted from the database !
Text Symbol: 810 = Protocol records have been deleted from the database !
Text Symbol: 809 = Attempt:
Text Symbol: 808 = Generating output table !
Text Symbol: 807 = Selection complete !
Text Symbol: 806 = Selecting protocol records !
Text Symbol: 805 = No. of deleted protocol records =
Text Symbol: 804 = Do you wish to continue ?
Text Symbol: 803 = from the database !
Text Symbol: 802 = This function deletes the displayed protocol messages
Text Symbol: 801 = Error deleting protocol record !
Text Symbol: 414 = Event not from TEM
Text Symbol: 201 = Selection timeframe
Text Symbol: 138 = Contact your system administrator.
Text Symbol: 137 = An error occured during data selection.
Text Symbol: 136 = Problem
Text Symbol: 135 = specified event.
Text Symbol: 134 = You are not authorized to view data for the
Text Symbol: 133 = Selection criteria have not been specified correctly.
Text Symbol: 132 = Information
Text Symbol: 131 = No protocol entries found for specified event.
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 and attempts to generate qualifications
Text Symbol: 101 = Event / Q.Generation Attempts
Text Symbol: 009 = Data for last attempt only ?
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.
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_QPROT' 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.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' textline1 = lv_text1 textline2 = lv_text2 titel = lv_text3 start_column = 35 start_row = 8 cancel_display = '' IMPORTING answer = lv_answer.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(813) p_infoline1 = lv_text1 p_infoline2 = lv_text2.
SLS_PR_GET_QTRANSFER_PROT CALL FUNCTION 'SLS_PR_GET_QTRANSFER_PROT' EXPORTING p_plvar = p_plvar p_no_tem = p_no_tem p_event_id = p_eveid p_last_attempt_only = p_attem TABLES p_qprot = it_qprot EXCEPTIONS no_protocol_entries_found = 1 error_during_sls_qprot_select = 2 event_id_not_specified = 3 authorization_not_possible = 4 access_to_event_data_denied = 5 OTHERS = 6.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(132) p_infoline1 = 'No protocol entries found for specified event.'(131).
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(132) p_infoline1 = 'Selection criteria have not been specified correctly.'(133).
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(132) p_infoline1 = 'You are not authorized to view data for the'(134) p_infoline2 = 'specified event.'(135).
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Problem'(136) p_infoline1 = 'An error occured during data selection.'(137)
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.