We have an integration source which give boolean data in a wrong format, and it cant be changed.
Is it possible to manipulate this in the integration job, ex. with @Code() ?
Ex. the data source return "0" or "1" as a string, representing "0" = false and "1" = true.
How can we manipulate that data so that the integration job understand that "0" = false and "1" = true?
I tried something like this in the scripting section of the integration job column @Code({{ColumnName}} == "1" ? true : false) but that was clearly wrong...