Hi there,
I am importing products using a CsvProvider as the source and the EcomProvider as the target. My CSV looks as follows:
PID,Name,Groups
1,P1,G1
2,P2,G1
3,P3,G2
When I run a job against this file, no groups are created. I tried quoting the group names (as described in the documentation) like this:
PID,Name,Groups
1,P1,"G1"
2,P2,"G1"
3,P3,"G2"
but that didn't help either. At some point during my experimentation, I did get groups, but no unique values. With the example above, I ended up with three groups, and G1 was listed twice.
Given this sample CSV, how would I import this so I end up with three products and two groups? Any advice?
Thanks,
Imar