SLSPAWD2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report useful for downloading the certification data from a location...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 SLSPAWD2 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
SL67 - PAW - Download Test-Catalog for Loc.
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_BEGIN = Event start date
Selection Text: P_EGRID = Event group restriction
Selection Text: P_END = Event end date
Selection Text: P_EVEID = Event ID
Selection Text: P_LOCID = Event location
Title: PAW Download Test Catalog
Text Symbol: 101 = Selection criteria
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: 115 = An Error occurred during selection of booking details.
Text Symbol: 116 = It is not possible to continue.
Text Symbol: 117 = Please contact your system administrator.
Text Symbol: 119 = Problem !
Text Symbol: 120 = Data collection complete - Preparing output table !
Text Symbol: 121 = Data retrieval in progress !
Text Symbol: 122 = Preparing output ...
Text Symbol: 223 = Information
Text Symbol: 224 = There were no test types with error !
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BAPI_SLS_IOA_GET_IOASSIGN_LIST CALL FUNCTION 'BAPI_SLS_IOA_GET_IOASSIGN_LIST' EXPORTING egrid = p_egrid p_locid = p_locid eveid = p_eveid begin_date = p_begin end_date = p_end * IMPORTING * RETURN = TABLES p_loctty = it_loctty p_ttype = it_ttype EXCEPTIONS wrong_location = 1 no_assignment = 2 unknown_exception = 3 OTHERS = 4 .
SLS_MISC_SHOW_MESSAGE_TAB CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE_TAB' TABLES p_messages = it_messages.
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.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = p_text.
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Information'(223) p_infoline1 = 'There were no test types with error !'(224).
SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Problem !'(119) p_infoline1 = 'An Error occurred during selection of booking details. '(115)
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.