id |
The name of the operation step, which is "compare" for
this type of operation step. This is a mandatory attribute. |
onTrue |
The action to perform if the comparison returns 0 (true).
The value can be the name of another operation step or one of the following
keywords:- next - Execute the next operation step.
- return - End the execution of operation steps.
|
onFalse |
The action to perform if the comparison returns 1 (false).
The value can be the name of another operation step or one of the following
keywords:- next - Execute the next operation step.
- return - End the execution of operation steps.
|
dataElementA |
The name of the first data element to be compared. |
dataElementB |
The name of the second data element to compare to the
first data element. |
operator |
The type of comparison the operation step is to perform.
The values are:- equal - The value in the first data element is equal to the value in
the second data element.
- less - The value in the first data element is less than the value in
the second data element.
- greater - The value in the first data element is greater than the value
in the second data element.
- lessEqual - The value in the first data element is less than or equal
to the value in the second data element.
- greaterEqual - The value in the first data element is greater than or
equal to the value in the second data element.
|