SAP SELECTION-SCREEN INCLUDE PARAM ABAP Statements

Get Example source ABAP code based on a different SAP table
  



ABAP Code Snippet

Short Reference
ABAP Code Snippet
ABAP Code Snippet
ABAP Code Snippet
ABAP Code Snippet
ABAP Code Snippet

ABAP Code Snippet
[OBLIGATORY [OFF]]
[MODIF ID modid]
[ID id].

What does it do? The PARAMETERS addition creates the screen elements for the parameter para on the current selection screen. You must specify a parameter for para that has already been declared with a PARAMETERS statement on a previous selection screen. All the properties of the parameter are copied from the original selection screen.

The additions OBLIGATORY and MODIF ID have the same meaning as in the PARAMETERS statement and overwrite the corresponding properties copied from the original selection screen. If the parameter on the original selection screen is declared with an OBLIGATORY addition, this property can be deactivated on the current selection screen by specifying OFF.

The ID addition can only be used in a selection include for a logical database.

ABAP Code Snippet the global variant para can be filled with values by several selection screens at the same time.

Return to menu