Skip to content

ABAP Keyword Documentation →  ABAP - Reference →  ABAP Syntax →  ABAP Statements →  Operands →  Functions and Expressions at Operand Positions 

Functions and Expressions for Operand Positions

  • Functions that can be executed in a read position are
Other versions: 7.31 | 7.40 | 7.54


Notes

  • We combine functions with numerical return values and arithmetical expressions together in numeric expressions.

Example

Numerical expression as an index specified for an internal table.

DATA: itab TYPE STANDARD TABLE OF i, 
      wa   LIKE LINE OF itab, 
      n    TYPE i. 

... 

READ TABLE itab INDEX lines( itab ) - n 
                INTO wa.