Is it possible to not use an Import Setting config to map columns to product fields? The Import Settings config will need to be set to Automap?
I have consistent CSV field names but some of these brand exports CSVs don't have the fields in the same column. Example, one brand has the weight in column N while a different brand has the weight in column J. There are also columns where the field name doesn't match a standard field name. This example: RETAILPrice is the column name and has to map to price.
If I customized the Build_Column_Info function, will it map RETAILPrice to PRICE regardless of what the column position is?
Thanks,
Scott
I have consistent CSV field names but some of these brand exports CSVs don't have the fields in the same column. Example, one brand has the weight in column N while a different brand has the weight in column J. There are also columns where the field name doesn't match a standard field name. This example: RETAILPrice is the column name and has to map to price.
If I customized the Build_Column_Info function, will it map RETAILPrice to PRICE regardless of what the column position is?
Code:
<MvEVAL EXPR = "{ Add_Standard_Column( l.columns, 'RETAILPrice', 'Price', 'PRICE', 0, 0, 'currency' ) }">
Scott
Comment