SAP LOGEXP AND



Get Example source ABAP code based on a different SAP table
  


• AND ABAP_BOOLEAN_OPERATOR

ABAP_LOGEXP - AND

ABAP_SYNTAX
ABAP_KEY ... log_exp1 AND log_exp2 AND log_exp3 ...

What does it do?
The combination of multiple logical expressions log_exp using AND creates a new logical expression that is true if all logical expressions log_exp are true. If one of the logical expressions is false, the combined expression is also false.



Latest notes:

The operator AND binds weaker than NOT and stronger than OR and EQUIV.
The operator AND implements an AND operation. Using NOT to negate such a operation is the same as using a NAND operation. It is true if at least one expression is false.
The Boolean operator AND should not be confused with the addition AND of the comparison operator BETWEEN.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
Check of an assignment to an interval, ignoring interval boundaries. IF operand > limit1 AND operand < limit2.
...
ENDIF.
ABAP_EXAMPLE_END