SAP Reports / Programs

RSSPO501 SAP ABAP Report - Function module POPUP TO DECDE LIST examples







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


Text pool values


Title: Function module POPUP TO DECDE LIST examples
Text Symbol: 001 = Display Popup with Radio button
Text Symbol: 002 = Display Popup with Checkboxes
Text Symbol: A01 = This is the
Text Symbol: A02 = POPUP TO DECIDE LIST
Text Symbol: A03 = to choose from a list
Text Symbol: B01 = Example 1
Text Symbol: B02 = Example 2
Text Symbol: C01 = The POPUP provides the
Text Symbol: C02 = following functionality:
Text Symbol: D01 = Up to 15 selections
Text Symbol: D02 = with checkboxes
Text Symbol: D03 = or Radio buttons
Text Symbol: D04 = Typical list fctn.:
Text Symbol: D05 = * Select
Text Symbol: D06 = * Select all
Text Symbol: D07 = * Deselect alle
Text Symbol: D08 = 3 35 char. lines
Text Symbol: D09 = 20 chars./option


INCLUDES used within this REPORT RSSPO501

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 = 10 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 RSSPO501 or its description.