Here is how we responded in the support ticket that was opened. I am posting this for any future user who may come across this post.
---
This is a known issue. Unfortunately, "ErrorCode", "ErrorColumn", and "ErrorText" are reserved column names in an SSIS Dataflow, and aside from a couple of workarounds that I will describe below, there is not anything that we can do to resolve the issue.
There are three ways to work around this issue, the first is to Alias the columns in the source query. So now instead of
SELECT * from dbo.MyTable;
it would be :
SELECT col1, col2, ErrorCode as MyErrorCode from dbo.MyTable;
The next workaround is to change the column's name in the column mappings collection in biml.
Finally, similar to the first option, you could create a view from the source table, where the column names avoid the reserved keywords.
Sorry for any inconvenience that this may cause, but it is beyond our control.