SAP READ TABLE DBTAB - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for READ_DBTAB

READ TABLE dbtab

ABAP Reference
ABAP Code Snippet


ABAP Syntax READ TABLE dbtab [WITH KEY key]

[SEARCH {FKEQ|FKGE|GKEQ|GKGE}]
[VERSION vers].
ABAP Code Snippet

What does it do? :Obsolete: Reads a single line from a database table dbtab.

ABAP Addition WITH KEY key
Determines the search key using the content of the data object key . Otherwise, the content of the table work area dbtab is used.
SEARCH {FKEQ|FKGE|GKEQ|GKGE}
Determines the search mode in the database table.
VERSION vers
Specifies a different database table in vers.

Return to menu