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

Writer Positions

Expressions that can be specified in writer positions are

Reader Positions

Constructor expressions:

Notes

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

Example

Numeric 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.