2019.2

Table Of Contents
l
JavaScript Expression: Set the desired value toξ˜ƒeither
true
or
false
. Example:
record.fields["isCanadian"] = true;
Note
The value must be all in lowercase:
true
,
false
. Any variation in case (True, TRUE) will not work.
Boolean expressions
Boolean values can be set using an expression of which the result is true or false. This is done
using operators and comparisons.
Example: record.fields["isCanadian"] = (extract("Country") == "CA");
For more information on JavaScript comparison and logical operators, please see
w3schools.com or developer.mozilla.org.
Currency
The Currency data type is a signed, numeric, fixed-point 64-bit number with 4ξ˜ƒdecimals.ξ˜ƒValues
range from -922 337 203 685 477.5808 to 922 337 203 685 477.5808. This data type is
routinely used for financial calculations: it is as precise as integers.
Defining Currency values
l
Preprocessor:
l
In the Step properties pane, under Properties, add or select a field.
l
Specify the Type as Currency and set a default value as a number with up to 4
decimal points, followed by a semicolon; such as 546513.8798;
Page 306