Hi,
I'm working on a solution with integration to NAV. All the products we have to import have a lot of custom fields. I've created all the fields in DW (the systemname is the same as in NAV).
Let's say we have a "ProductColor" field. When a product has a color value, this node is added to the <item table="EcomProducts"> node for the given product:
<column columnName="ProductColor"><![CDATA[Black]]></column>
When a product doesn't have a value for ProductColor this node isn't added at all. Then, when I try to run the import i get the following error in the log:
[EcomProducts] can not get a value for the column: [ProductColor]. The input rows is: ...
Is this because the database needs the value because the column is not nullable, or is it because of the Ingration Framework? Does it expect values in all custom fields?