SAP Reports / Programs

SLSPAWDEL SAP ABAP Report - PAW - Report to delete results according of partid / testid / eventid







SLSPAWDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report for deleting the results according to the Participant ID, Event ID, Test ID and Location ID...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 SLSPAWDEL 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

SL104 - PAW - Deleting Results


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 SLSPAWDEL. "Basic submit
SUBMIT SLSPAWDEL AND RETURN. "Return to original report after report execution complete
SUBMIT SLSPAWDEL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: PAW - Report to delete results according of partid / testid / eventid
Text Symbol: 100 = Delete selection
Text Symbol: 101 = By participant
Text Symbol: 103 = By event ID
Text Symbol: 104 = By test info objects (PHIOs)
Text Symbol: 105 = By location ID
Text Symbol: 110 = Delete of results according the participant IDs
Text Symbol: 111 = Do you really want to delete?
Text Symbol: 112 = Yes
Text Symbol: 113 = No
Text Symbol: 116 = Delete of results according the event ID
Text Symbol: 117 = Delete of results according the test ID
Text Symbol: 118 = Delete of results according the location ID
Text Symbol: 130 = Data selection completed successfully !
Text Symbol: 131 = Data deletion completed successfully !
Text Symbol: 132 = Data deletion not successful !
Text Symbol: 133 = The data can not be restored !
Text Symbol: 150 = Participant selection error
Text Symbol: 151 = Participant search was not successful.
Text Symbol: 216 =


INCLUDES used within this REPORT SLSPAWDEL

INCLUDE: SLSPEWI2.


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:

F4IF_FIELD_VALUE_REQUEST

SLS_MISC_F4_HELP * call function 'F4IF_FIELD_VALUE_REQUEST' CALL FUNCTION 'SLS_MISC_F4_HELP' EXPORTING tabname = '' fieldname = '' searchhelp = 'SH_PARTICM' shlpparam = 'PARID' * DYNPPROG = ' ' * DYNPNR = ' ' * DYNPROFIELD = ' ' * STEPL = 0 * VALUE = ' ' multiple_choice = 'X' * DISPLAY = ' ' * SUPPRESS_RECORDLIST = ' ' callback_program = 'SLSPAWR7' callback_form = 'F4_PARTIC_CALLBACK' TABLES return_tab = it_f4partic_ret EXCEPTIONS field_not_found = 1 no_help_for_field = 2 inconsistent_help = 3 no_values_found = 4 OTHERS = 5 .

SLS_MISC_SHOW_MESSAGE CALL FUNCTION 'SLS_MISC_SHOW_MESSAGE' EXPORTING p_title = 'Participant selection error '(150) p_infoline1 = 'Participant search was not successful.'(151)

POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING textline1 = text-111 textline2 = text-133 text_option1 = text-112 text_option2 = text-113 titel = text-110 IMPORTING answer = lc_answer.

POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING textline1 = text-111 textline2 = text-133 text_option1 = text-112 text_option2 = text-113 titel = text-116 IMPORTING answer = lc_answer.

POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING textline1 = text-111 textline2 = text-133 text_option1 = text-112 text_option2 = text-113 titel = text-117 IMPORTING answer = lc_answer.

POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING textline1 = text-111 textline2 = text-133 text_option1 = text-112 text_option2 = text-113 titel = text-118 IMPORTING answer = lc_answer.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = p_text.

SLS_CUST_GET_PLAN_VARIANT CALL FUNCTION 'SLS_CUST_GET_PLAN_VARIANT' IMPORTING p_plvar = lc_plvar.



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 SLSPAWDEL or its description.