SAP SELECTION-SCREEN BOS - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SELECTION-SCREEN

SELECTION-SCREEN - BEGIN OF

ABAP Reference
ABAP Code Snippet


ABAP Syntax SELECTION-SCREEN BEGIN OF SCREEN dynnr { { [TITLE
title]
[AS WINDOW] }
| { AS SUBSCREEN
[NO INTERVALS]
[NESTING LEVEL n] } }.
...
SELECTION-SCREEN END OF SCREEN dynnr.
ABAP Code Snippet

What does it do? Defines a separate selection screen with the screen number dynnr. The elements of the selection screen are defined between the two statements. Any selection screen elements that are declared outside of these statements belong to the standard selection screen with the screen number 1000.

ABAP Addition TITLE title
Specifies a title title in the title bar.
AS WINDOW
Defines a selection screen for a modal dialog window.
AS SUBSCREEN
Defines a selection screen as a subscreen.
NO INTERVALS
Sets the NO INTERVALS addition for all selection criteria of the selection screen.
NESTING LEVEL n
Adjusts the width of the subscreens within tabstrips.

Return to menu