SAP SELECTION-SCREEN DEFINITION ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• BEGIN OF SCREEN SELECTION-SCREEN
• END OF SCREEN SELECTION-SCREEN

SELECTION-SCREEN, BEGIN OF
Short Reference

ABAP_SYNTAX_FORMS

Selection Screens as Regular Dynpros
1 SELECTION-SCREEN BEGIN OF SCREEN dynnr $[TITLE title$]
$[AS WINDOW$].
...
SELECTION-SCREEN END OF SCREEN dynnr.

Selection Screens as SubscreenDynpros
2 SELECTION-SCREEN BEGIN OF SCREEN dynnr AS SUBSCREEN
$[NO INTERVALS$]
$[NESTING LEVEL n$].
...
SELECTION-SCREEN END OF SCREEN dynnr.

What does it do?
These variants of the statement SELECTION-SCREEN create selection screens. Selection screens can be created as regular dynpros or as subscreen dynpros.
The standard selection screen for executable programs is created automatically.

Return to menu