What does the error "Invalid Character Constant" mean? My job holds components: Input -> AddLocationFrom IP -> tMap -> tLogRow (with additional inputs to the tMap) The error popping up during compilation, and is related to tLogRow-component.
Geuder, What are you doing in your tMap component? Because doing function on columns with null values can give null pointer exceptions. If that's the case you need to do an if statement like: row1.ColumnName == null ? null : Yourfunction(row1.ColumnName) Regards