ABAP_SYNTAX ABAP_KEY ... operand $[NOT$] BETWEEN operand1 AND operand2 ...>
What does it do? A comparison expression with the comparison operator BETWEEN> checks the assignment of an interval. The comparison expression checks whether the content of an operand operand> is within a closed interval that is restricted by the operands operand1> and operand2>. The ternary comparison expression is equivalent to the following combination of two binary comparison expressions: ... $[NOT>$] ( operand >=> operand1 AND> operand < => operand2 ) ...> All operands are general expression positions> and the usual comparison rules> apply.
ABAP_EXAMPLE_VX5 Check whether today is a working day and assigning the result to a variable declared inline. ABEXA 01707 ABAP_EXAMPLE_END