Overview of the condition types and their syntax
These are the condition types:
- Any Value
- Applies to all data types.
- Parameter Value Comparison
- Applies to all data types.
- Parameter Comparison
- Applies to all data types.
- Parameter Between Values
- Applies to these data types: INTEGER, DECIMAL, DATETIME, DATE.
- Parameter in Set
- Applies to data type: STRING
- Parameter not in Set
- Applies to data type: STRING
Compare the input parameter value with a list of constant values, comma separated. The condition evaluates to True if none of the specified values matches the input parameter value. Comparison is case sensitive.
Syntax: Parameter NOT IN SET [Value1,Value2,Value3,…]
- Parameter in Codes
- Applies to data type: STRING
- Parameter not in Codes
- Applies to data type: STRING
Compare the input parameter value with a list values selected from a Codelist. The condition evaluates to True if none of the selected codes matches the input parameter value. Comparison is case sensitive.
Syntax: Parameter NOT IN CODES [CodelistName:Value1,Value2,Value3,…]