Skip to content

ABAP Keyword Documentation →  ABAP − Reference →  ABAP Syntax →  ABAP Statements →  Operands →  Functions and Expressions in Operand Positions 

Functions and Expressions for Operand Positions

Other versions: 7.31 | 7.40 | 7.54

Writing Positions

The following expressions can be specified in writing positions:

Reading Positions

Functions that can be executed in a read position are

The following expressions can be specified in reading positions:


Notes

  • Functions with numeric return values and arithmetic expressions are combined as numeric expressions.

Example

Numerical expression as an index specified for an internal table.

DATA: itab TYPE STANDARD TABLE OF i, 
      n    TYPE i. 

... 

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