SAP SELECTION-SCREEN BOTB - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SELECTION-SCREEN

SELECTION-SCREEN - TABBED BLOCK

ABAP Reference
ABAP Code Snippet


ABAP Syntax SELECTION-SCREEN BEGIN OF TABBED BLOCK tblock FOR
n LINES [NO INTERVALS].
...
SELECTION-SCREEN END OF BLOCK tblock.
ABAP Code Snippet

What does it do? Defines a tabstrip control or subscreen area named tblock on the current selection screen.

ABAP Addition FOR n LINES
Defines the number of lines in the tabstrip control in n. NO INTERVALS
Creates a narrower area.

Return to menu