Sunday, 13 May 2012

How to read single line of table? | SAP-ABAP

 The read statement is used to read a single line from the table. The following syntax is used to read a single line of any table:
 read table itab [into wa1] [index idx | with keyexp [binary search] ]
where:
i.    itab— It is the name of an internal table.
ii.    wal— It is the name of work area.
iii.    idx— is an integer literal, constant, or variable
iv.   keyexp— it is an expression representing a value to be found.

No comments: