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 - AND
Other versions: 7.31 | 7.40 | 7.54
Syntax
... log_exp1 AND log_exp2 AND log_exp3 ...
Effect
The linking of several logical expressions log_exp
with AND
forms a new logical expression that is true when all logical expressions log_exp
are true. If one of the logical expressions is false, then the link is also false.
Notes
- The operator
AND
binds less powerfully thanNOT
and more powerful thanOR
andEQUIV
.
- The operator
AND
realizes a logical AND. The negation of such a link withNOT
corresponds to a logical NAND (Not AND). It is true if at least one expression is false.
- The Boolean operator
AND
should not be confused with theAND
statement fromBETWEEN
.