i'm trying to create a catalog from an existing database. thus far, i've been able to create product records for hierarchical import. but here's the problem:
each sku has a 'category' and a 'model'.
we want to organize the catalog so that there are two main sections: category and model. each sku would appear in the appropriate place in each hierarchy.
eg:
section "skus by category"
section "a"
product sku1
product sku2
end section
section "b"
product sku3
product sku4
end section
end section
section "skus by model"
section "model101"
product sku2
product sku3
end section
section "model102"
product sku1
end section
section "model140"
product sku4
end section
end section
when i do the import what happens is when trying to import the skus by model, every product (i guess) has the following error message:
There is already a product with that name.
so... what do i put in the import file to tell the import program 'copy sku1 here'?
each sku has a 'category' and a 'model'.
we want to organize the catalog so that there are two main sections: category and model. each sku would appear in the appropriate place in each hierarchy.
eg:
section "skus by category"
section "a"
product sku1
product sku2
end section
section "b"
product sku3
product sku4
end section
end section
section "skus by model"
section "model101"
product sku2
product sku3
end section
section "model102"
product sku1
end section
section "model140"
product sku4
end section
end section
when i do the import what happens is when trying to import the skus by model, every product (i guess) has the following error message:
There is already a product with that name.
so... what do i put in the import file to tell the import program 'copy sku1 here'?
Comment