SAP EXPRESSION - Guide
Get Example source ABAP code based on a different SAP table
Expressions
ABAP_BACKGROUND
An expression is part of an ABAP statement that returns a result. An expression consists of one or more operands in combination with operators or special ABAP words. Expressions can be logical expressions constructed from relational expressions and also calculation expressions. The latter type is subdivided into arithmetic expressions, bit expressions, and string expressions. Data objects, other suitable expressions, and calls of built-in functions and functional methods can all be used as expression operands. In character string processing, regular expressions for searches and pattern comparisons are also used.
These expressions can be nested and combined in many different ways. Nested and chained calls are possible for functional methods. The maximum nesting depth of expressions is restricted to 32 by ABAP Compiler.
ABAP_RULE
Use expressions at operand positions in a way that means the program remains legible and understandable.
ABAP_DETAILS
The various options for expressions mean that the use of helper variables is superfluous in many places. The use of expressions and functional calls at operand positions is useful under the following prerequisites:
Programs should always be kept clear and legible.. Do not be too ambitious and combine everything into one single expression. If an expression becomes too complex, it should be split at suitable points, and the intermediate results should be saved in helper variables. This particularly applies to character string processing with string templates and to regular expressions. These are very powerful but they can also make programs difficult to read very quickly.
ABAP_EXAMPLE_BAD
The following source code shows an arithmetic expression in a relational expression in a loop. The same total must be recalculated for each loop pass.
IF oref->meth( < wa> ) < sy-tabix * ( offset + length ).
...
ENDIF.
ENDLOOP.
ABAP_EXAMPLE_END
ABAP_EXAMPLE_GOOD
The following source code has the same function as the example above. However, the total is only calculated once before the loop.
LOOP AT itab ASSIGNING < wa>.
IF oref->meth( < wa> ) < sy-tabix * limit.
...
ENDIF.
ENDLOOP.
ABAP_EXAMPLE_END