SAP IMPORT DIRECTORY - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for IMPORT_DIRECTORY

IMPORT DIRECTORY

ABAP Reference
ABAP Code Snippet


ABAP Syntax IMPORT DIRECTORY INTO itab

FROM DATABASE dbtab(ar) [TO wa] [CLIENT cl] ID id.
ABAP Code Snippet

What does it do? Imports the table of contents of a data cluster into an internal table itab.

ABAP Addition FROM DATABASE dbtab(ar) [CLIENT cl]
Specifies a data cluster in a database table dbtab in the area ar and stored with the client ID cl .
ID id
Specifies the id of the data cluster.
TO wa
Specifies a work area wa for storing information on the data cluster.

Return to menu