Luis, the documentation does not appear to be too detailed in this regard. This is some information from the code which generally applies to these types of transformations (and as you have noted, there seems to be an exception in the Job Specific Data node): String -> integer - Read the first characters until a non-numeric value is found. The integer is the digits read. String-> Real - Same as integer, but allows a decimal point (Which must be a '.' Character) String -> Date - String is parsed, and the components are analyzed. If there is ambiguity between month and day, it will either use what you specify (ie in text input or job specific data node) or it will use your locale setting. String -> Boolean - Will look for values true, t, yes, y, on to represent true and false, f, no, n, off to represent false
... View more