ABAP Keyword Documentation → ABAP - Reference → Program Flow → Expressions and Functions for Logical Expressions → log_exp - Logical Expressions → log_exp - Boolean Operators and Brackets
log_exp - OR
Other versions: 7.31 | 7.40 | 7.54
Syntax
... log_exp1 OR log_exp2 OR log_exp3 ...
Effect
If you link multiple logical expressions log_exp
with OR
,
then a new logical expression is created which is true if at least one of the logical expressions log_exp
is true. Only if all logical expressions are false, then the link is false as well.
Notes
- The operator
OR
provides a weaker link thanNOT
andAND
provides a stronger link thanEQUIV
.
- The operator
OR
realizes a logical OR link. The negation of such a link withNOT
corresponds to a link with NOR (Not OR). It is true if all expressions are false.