Error: This product was not processed. Does it have at least one of these: (listing id, parent sku, sku)?
How to fix "Error: This product was not processed"This error occurs when the parser is unable to identify which actions should be performed for this particular row.
The problem is one of these:
- Trying to upload variations without
parent_sku
. - Trying to update variations with duplicate
product_id
- Trying to update variations with duplicate option values
This happens because the parser needs to group your variations into a listing, but it couldn’t.
The parser will try to group variations into a listing by listing_id
or parent_sku
. Next, the parser will identify each variation by product_id
or combinations of option values.
If your variation has the same product_id
or option value combination as another variation, it’s a duplicate and only one of those variations will be uploaded.
option1_name | option1_value | option2_name | option2_value | |
---|---|---|---|---|
Shirt color | Red | Shirt size | Medium | |
Shirt color | Red | Shirt size | Medium | |
>>> | Shirt color | Red | Shirt size | Medium |
In this situation, the last variation will be uploaded and the rest will be ignored.