Skip to content

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

Numeric Expression Positions

Numeric expression positions are reading positions in which numeric data objects, constructor expressions, arithmetic expressions, table expressions, and built-in functions, or functional method calls and method chainings whose return value has a numeric data type, can be specified. The following numeric expression positions exist:

  • Arguments of functions
  • Counters and positions:
  • Positions specified in the statements FIND and REPLACE:
  • The row number idx specified with respect to a table index when accessing an internal table in the following:

Other versions: 7.31 | 7.40 | 7.54


Example

Specifies a built-in function lines( itab ) for specifying the loop passes of a DO loop.

DATA itab TYPE TABLE OF i WITH EMPTY KEY. 

... 

DO lines( itab ) TIMES. 
  ... 
ENDDO.