SAP Reports / Programs

RSSPO500 SAP ABAP Report - Example of function module POPUP_TO_DECIDE_LIST







RSSPO500 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 RSSPO500 into the relevant SAP transactions such as SE38 or SE80


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


Text pool values


Title: Example of function module POPUP_TO_DECIDE_LIST
Text Symbol: D06 = * Select all
Text Symbol: D05 = * Select
Text Symbol: D04 = Typical list fctn.:
Text Symbol: D03 = or Radio buttons
Text Symbol: D02 = with checkboxes
Text Symbol: D10 = active/inactive selectable per line
Text Symbol: D09 = 65 char/option
Text Symbol: D08 = 3 70 char. lines
Text Symbol: D07 = * Deselect alle
Text Symbol: A03 = to choose from a list
Text Symbol: A02 = POPUP_TO_DECIDE_LIST
Text Symbol: A01 = This is the
Text Symbol: 002 = Display Popup with Checkboxes
Text Symbol: 001 = Display Popup with Radio button
Text Symbol: D01 = Up to 15 selections
Text Symbol: C02 = following functionality:
Text Symbol: C01 = The POPUP provides the
Text Symbol: B02 = Example 2
Text Symbol: B01 = Example 1


INCLUDES used within this REPORT RSSPO500

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:

POPUP_TO_DECIDE_LIST CALL FUNCTION 'POPUP_TO_DECIDE_LIST' EXPORTING * CURSORLINE = 1 * MARK_FLAG = ' ' MARK_MAX = 1 START_COL = 10 START_ROW = 10 TEXTLINE1 = 'Dies ist das'(A01) TEXTLINE2 = 'POPUP_TO_DECIDE_LIST'(A02) TEXTLINE3 = 'zur Auswahl aus einer Liste'(A03) TITEL = 'Das Beispiel 1'(B01) IMPORTING ANSWER = ANTWORT TABLES T_SPOPLI = SELECTLIST EXCEPTIONS NOT_ENOUGH_ANSWERS = 1 TOO_MUCH_ANSWERS = 2 TOO_MUCH_MARKS = 3 OTHERS = 4.

POPUP_TO_DECIDE_LIST CALL FUNCTION 'POPUP_TO_DECIDE_LIST' EXPORTING * CURSORLINE = 1 MARK_FLAG = 'X' MARK_MAX = 0 START_COL = 15 START_ROW = 15 TEXTLINE1 = 'Das POPUP bietet'(C01) TEXTLINE2 = 'folgende Funktionalität:'(C02) TITEL = 'Das Beispiel 2'(B02) IMPORTING ANSWER = ANTWORT TABLES T_SPOPLI = SELECTLIST EXCEPTIONS NOT_ENOUGH_ANSWERS = 1 TOO_MUCH_ANSWERS = 2 TOO_MUCH_MARKS = 3 OTHERS = 4.



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