SAP Reports / Programs

RSSPO100 SAP ABAP Report - Examples of the use of the group SPO1 function modules







RSSPO100 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 RSSPO100 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 RSSPO100. "Basic submit
SUBMIT RSSPO100 AND RETURN. "Return to original report after report execution complete
SUBMIT RSSPO100 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: LOSS = Pop-up to confirm loss of data
Selection Text: MESSAGE = Pop-up to confirm with message
Selection Text: STEP = Pop-up to confirm step
Selection Text: STEP2 = POPUP_TO_CONFIRM w/o CANCEL
Selection Text: VALUE = Pop-up to confirm with value
Title: Examples of the use of the group SPO1 function modules
Text Symbol: 001 = Confirmation prompt test
Text Symbol: 010 = You have carried out the test
Text Symbol: 011 = You have not carried out the test
Text Symbol: 012 = You have aborted the test
Text Symbol: A01 = Do you really want to carry out ;;
Text Symbol: A02 = the test? ;;
Text Symbol: B01 = Do you really want to carry out
Text Symbol: B02 = ?
Text Symbol: C01 = Do you really want to carry out ;;
Text Symbol: C02 = the test? ;;
Text Symbol: D01 = You have been presented with a ;;
Text Symbol: D02 = dialog screen and have been asked ;;
Text Symbol: D03 = to decide. ;;
Text Symbol: E01 = Do you really want to carry out ;;
Text Symbol: E02 = the test? ;;


INCLUDES used within this REPORT RSSPO100

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_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = TITEL TEXTLINE1 = SPOP-TEXTLINE1 TEXTLINE2 = SPOP-TEXTLINE2 IMPORTING ANSWER = ANSWER.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = TITEL TEXTLINE1 = SPOP-TEXTLINE1 TEXTLINE2 = SPOP-TEXTLINE2 CANCEL_DISPLAY = SPACE IMPORTING ANSWER = ANSWER.

POPUP_TO_CONFIRM_WITH_VALUE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE' EXPORTING TITEL = TITEL TEXT_BEFORE = SPOP-TEXTLINE1 OBJECTVALUE = 'TEST' TEXT_AFTER = SPOP-TEXTLINE2 IMPORTING ANSWER = ANSWER.

POPUP_TO_CONFIRM_WITH_VALUE_2 * call function 'POPUP_TO_CONFIRM_WITH_VALUE_2' * exporting * objectvalue = sy-uname * titel = titel * text = textline1 * importing answer = answer.

POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING TITEL = TITEL TEXTLINE1 = SPOP-TEXTLINE1 TEXTLINE2 = SPOP-TEXTLINE2 DIAGNOSETEXT1 = SPOP-DIAGNOSE1 DIAGNOSETEXT2 = SPOP-DIAGNOSE2 DIAGNOSETEXT3 = SPOP-DIAGNOSE3 IMPORTING ANSWER = ANSWER.

POPUP_TO_CONFIRM_LOSS_OF_DATA CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' EXPORTING TITEL = TITEL TEXTLINE1 = SPOP-TEXTLINE1 TEXTLINE2 = SPOP-TEXTLINE2 IMPORTING ANSWER = ANSWER.



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