Get Example source ABAP code based on a different SAP table
• OR ABAP_BOOLEAN_OPERATOR
ABAP_LOGEXP > - OR>
ABAP_SYNTAX ABAP_KEY ... log_exp1 OR log_exp2 OR log_exp3 ...>
What does it do? If multiple logical expressions log_exp>> are combined using OR>, a new logical expression is created that is true if at least one of the logical expressions log_exp> is true. The combination is false only if all logical expressions of the combination are false.
Latest notes:
The operator OR> binds weaker than NOT> or AND> and binds stronger than EQUIV>.
The operator OR> implements an OR> operation. Negating such an operation using NOT>> is the same as using a NOR> operation. It is true if all expressions are false. NON_V5_HINTS ABAP_HINT_END
ABAP_EXAMPLE_VX5 Check whether the local time is within one of two intervals. The language elements AND> are not Boolean operators in this case but belong to the comparison operator BETWEEN> >. ABEXA 01106 ABAP_EXAMPLE_END