SAP SELECTION-SCREEN STANDARD ABAP Statements



Get Example source ABAP code based on a different SAP table
  



SELECTION-SCREEN, Standard Selection Screens
Each executable program contains a standard selection screen with the dynpro number 1000. The screen elements on the standard selection screen are defined by all PARAMETERS, SELECT-OPTIONS, and SELECTION-SCREEN statements that are not within the definition of a standalone selection screen, in other words, that are not defined between the following statements: SELECTION-SCREEN BEGIN OF SCREEN ...
...
SELECTION-SCREEN END OF SCREEN ...
In cases where a standard selection screen combines the screen of the executable program and the screen of a logical database, the screen elements of the executable program are arranged below the elements of the logical database.
Function pools and module pools do not have a standard selection screen. Here, the three statements PARAMETERS, SELECT-OPTIONS, and SELECTION-SCREEN must be within the definition of the standalone selection screen.



Latest notes:

It is advisable to group all the statements that define the standard selection screen and list them in the global declaration part together with the definitions of standalone selection screens.
ABAP_HINT_END

Return to menu