1.7

Table Of Contents
l "HTMLString" on page148
l "Integer" on page148
l "Float" on page147
l "Currency" on the next page
l "Date" on page144
l "Object" on page149
Note
The Object data type is only available in the DataMapper module. It can be used for properties in
the Preprocessor step, but not for fields in the Data Model.
Boolean
Booleans are a simple true/false data type often used in conditions and comparisons.
Defining Boolean values
l
Preprocessor:
l
In the Step properties pane, under Properties, add or select a field.
l
Specify the Type as Boolean and set a default value of either either true or
false, followed by a semicolon.
l
Extraction:
l
In the Data Model, select a field.
l
On the Step properties pane, under Field Definition set the Type to Boolean.
The field value must be true or false.
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.
Page 142