SAP SELECTION-SCREEN TAB - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SELECTION-SCREEN

SELECTION-SCREEN TAB

ABAP Reference
ABAP Code Snippet


ABAP Syntax SELECTION-SCREEN TAB (len) tab USER-COMMAND fcode

[DEFAULT [PROGRAM prog] SCREEN dynnr]
[MODIF ID modid]
[FOR {TABLE|NODE} node [ID id]].
ABAP Code Snippet

What does it do? Defines a tab title with the name tab, the length len, and the function code fcode in a tabstrip area.

ABAP Addition DEFAULT [PROGRAM prog] SCREEN dynnr
Assigns the tab title a subscreen screen dynnr in program prog. MODIF ID modid
Assigns the screen element to the modifiation group modid.
FOR {TABLE|NODE} node
Assigns the screen element in a logical database to a node node of the relevant structure.
ID id
Defines a maximum three-character ID id for the screen element in a logical database.

Return to menu