B2B Data Exchange
- B2B Data Exchange 10.5.0
- All Products
Condition
| Syntax
| Description
|
---|---|---|
Equals
| eq
| Checks for equality of the given values. The condition evaluates to true if and only if both values are exactly the same. When comparing string values, the comparison is performed in a case-sensitive manner. So the condition ‘a’ eq ‘A’ evaluates to false.
|
Not Equals
| ne
| Checks for un-equality of the given values. The condition evaluates to true if and only if both values are not equal. When comparing string values, the comparison is performed in a case-sensitive manner. So the condition ‘a’ ne ‘A’ evaluates to true.
|
Less Than
| lt
| Checks to see if <value1> is less than <value2>. If so, it evaluates to true.
|
Less Than or Equal to
| le
| Checks to see if <value1> is less than or equal to <value2>. If so, it evaluates to true.
|
Greater Than
| gt
| Checks to see if <value1> is greater than <value2>. If so, it evaluates to true.
|
Greater Than or Equal to
| ge
| Checks to see if <value1> is greater than or equal to <value2>. If so, it evaluates to true.
|