SAP Reports / Programs | Knowledge Management | Knowledge Warehouse | Performance Assessment Workbench(KM-KW-PAW) SAP KM

SLSPAWD1 SAP ABAP Report - PAW - Download Booking Data







SLSPAWD1 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 downloading the Participant Certification booking data...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 SLSPAWD1 into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

SL66 - PAW - Download Certification Details


ABAP code to call this SAP report using the submit statement

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.






SUBMIT SLSPAWD1. "Basic submit
SUBMIT SLSPAWD1 AND RETURN. "Return to original report after report execution complete
SUBMIT SLSPAWD1 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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 Booking Data
Text Symbol: 101 = Booking data selection
Text Symbol: 110 = GUI initialization error
Text Symbol: 111 = Error occurred during initialization of GUI display.
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 = No records with error have been retrieved !


INCLUDES used within this REPORT SLSPAWD1

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

BAPI_SLS_BOOK_BOOKING_LIST CALL FUNCTION 'BAPI_SLS_BOOK_BOOKING_LIST' EXPORTING egrid = p_egrid locid = p_locid eveid = p_eveid begin_date = p_begin end_date = p_end * IMPORTING * RETURN = IS_BAPIRE TABLES p_partic = it_partic p_partic_no = it_partic_no EXCEPTIONS no_hr_system_found = 1 no_plvar_found = 2 no_participant_function_found = 3 no_participant = 4 no_eventgroup = 5 no_event_type = 6 no_event = 7 root_not_found = 8 wegid_not_found = 9 no_location_assignment = 10 wrong_plvar = 11 no_test_type_source = 12 unknown_exception = 13 OTHERS = 14 .

SLS_MISC_SHOW_MESSAGE * call function 'SLS_MISC_SHOW_MESSAGE' * exporting * p_title = 'Problem !'(119) * p_infoline1 = * 'Error occurred during selection of booking details. '(115)

SLS_MISC_SHOW_MESSAGE_TAB CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE_TAB' TABLES p_messages = it_messages.

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 = 'No records with error have been retrieved !'(224) .

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_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Problem !'(119) p_infoline1 = 'An Error occurred during selection of booking details. '(115)



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name SLSPAWD1 or its description.