SAP DESCRIBE TABLE - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for DESCRIBE_TABLE

DESCRIBE TABLE

ABAP Reference
ABAP Code Snippet


ABAP Syntax DESCRIBE TABLE itab [KIND knd] [LINES lin]
[OCCURS n].
ABAP Code Snippet

What does it do? Defines the properties of an internal table itab.

ABAP Addition KIND knd
Returns the table type in knd.
LINES lin
Returns the number of lines in lin.
OCCURS n
Returns the initial storage area in n.

Return to menu