Data Transformation Engine Functions and Expressions Reference Guide

Chapter 3 - Function Reference OR
Functions and Expressions Reference Guide
160
Uses
Use
ONERROR in component rules to add user-defined error messages to the
data section of the audit log.
OR
The OR function evaluates a series of conditions and returns TRUE if at least one
evaluates to TRUE; otherwise returns FALSE.
Syntax
OR (series-condition-expression)
Meaning
OR (conditions_to_evaluate)
Returns
This function returns TRUE or FALSE
Evaluates to TRUE if any member of the argument evaluates to TRUE.
Evaluates to FALSE if all members of the argument evaluate to FALSE.
Example
Order(s)=IF (OR (Store:Table = Store#:Order:Input),
Order:Input)
This example produces an Order if the Store# of an Order in Input matches
any Store in Table.
Uses
Use
OR to test whether one of a series of conditions is true.
Related Function
ALL