SAP CDS COND EXPR BETW V1



Get Example source ABAP code based on a different SAP table
  


• BETWEEN ABAP_CDS_DDL_OPERATOR

ABAP_CDS_DDL - DDIC-Based View, cds_cond, BETWEEN

ABAP_SYNTAX
... lhs BETWEEN rhs1 AND rhs2 ...

What does it do?
Compares an interval in a condition in a ABAP_CDS_V1_VIEW . The relational expression is true if the value of lhs is between the values of rhs1 and rhs2. The expression has the same meaning as the following combination of two comparisons:
... lhs >= rhs1 AND lhs < = rhs2 ...
The corresponding context-dependent rules apply to the operands lhs, rhs1, and rhs2 as well as the same conditions for the data types.