Ansicht
Dokumentation

ABENTABLE_EXPRESSIONS - TABLE EXPRESSIONS

ABENTABLE_EXPRESSIONS - TABLE EXPRESSIONS

General Data in Customer Master   Vendor Master (General Section)  
This documentation is copyright by SAP AG.
SAP E-Book

- Table Expressions ()

... itab[ itab_line ]$[-comp$|[ ... ]$|->comp$] ...

Effect

A table expression consists of an internal table itab directly followed by a line specification itab_line in square brackets [ ]. A chaining -comp$|[ ... ]$|->comp can be appended to this line. The expression searches for the specified line in the internal table.

  • If no chaining is specified, the entire line is returned as the result of the corresponding line type.
  • If a chaining is specified, the following is possible:
  • The structure component selector - can be used to access the component comp in the read line.

  • Square brackets [ ... ] can be used to chain multiple table expressions.

  • The object component selector -> can be used to access a component comp of the object referenced by the preceding expression.

The result of a table expression can be used as follows:

  • Read positions

  • Write positions

The internal table itab must be specified directly using its name, a field symbol, or a dereferenced data reference as described under Read Positions. In a table with header line, the table body is addressed and not the header line.

If the specified line is not found, a catchable exception of the class CX_SY_ITAB_LINE_NOT_FOUND is raised in all operand positions, except when

  • a table expression is used in the statement ASSIGN, where sy-subrc is set to the value 4,
  • used in the predicate function line_exists, where the truth value "false" is returned,
  • used in the table function line_index, where the value 0 is returned.

Notes

  • In table expressions, the empty square brackets [] cannot be specified after itab. In other operand positions, these empty brackets distinguish the table body from header lines.
  • Functions and constructor expressions cannot currently be specified for itab, but the table expressions shown under Chainings are possible.
  • Duplicate selections, that is, multiple reads performed on the same line of an internal table in different expressions, must be avoided in a statement with multiple table expressions. In these cases, a selection should be made before the statement and the result referenced by a field symbol or reference variable.
  • The exception class CX_SY_ITAB_LINE_NOT_FOUND contains attributes for displaying the line number in the index or key used if an access fails. If only index accesses are used in statements with multiple table expressions, it is not possible to distinguish which expression was unsuccessful.
  • Each table expression can be viewed as a short form for a variant of the statement READ TABLE that enables reads to be performed on lines of internal tables in operand positions.
  • In write positions, the same restrictions apply with respect to modifying key fields to table expressions whose result is a field symbol or temporary reference variable as to other field symbols or data reference variables that point to lines of internal tables. In particular, table expressions that return a line of a sorted table or hashed table to write positions like the left side of an assignment or as actual parameters for output parameters always raise an exception.
  • A table expression cannot be specified in a write position if it is a read-only table, such as an input parameter passed by reference. This restriction applies even if a chaining is used and the content of the table itself is not actually modified.
  • Unlike READ TABLE, a table expression does not change the value of the system field sy-tabix, except when used in the statement ASSIGN.
  • Like the statement READ TABLE, a table expression is a single line read. If multiple lines of an internal table are to be read, the statement LOOP or a FOR expression generally has better performance than using table expressions in a loop.
  • Mesh path expressions are a special form of table expression that can be used in exactly the same way as table expressions.

Example

The content of the component carrid of the line of the internal table carrier_tab is passed to the method get_spfli. In this table, the component carrname of the secondary key name has a specific value.

The first calculation with table lines is a bad example of how to use table expressions. The same selection is made three times in the same statement. The second calculation shows how this can be avoided by using an assignment to a field symbol.

Examples

The program DEMO_TABLE_EXPRESSIONS shows further examples of how to use table expressions.

Exceptions

Catchable Exceptions

CX_SY_ITAB_LINE_NOT_FOUND

  • Cause: The specified table line was not found.
    Runtime Error: ITAB_LINE_NOT_FOUND





BAL_S_LOG - Application Log: Log header data   Fill RESBD Structure from EBP Component Structure  
This documentation is copyright by SAP AG.

Length: 10805 Date: 20240427 Time: 055428     sap01-206 ( 133 ms )