Magento – Skip import row, is not valid value “” for field “type”

magento-1.9

i am using .xml file to import product in my new magento setup without sample data.. but after import, it gives an error…

Found 7 rows.

Starting catalog/convert_adapter_product :: parse
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Skip import row, is not valid value "" for field "type"
Processed 100% 7/7 records
Imported 0 records

Best Answer

If you are using an exported CSV file to import in Magento then you need to make some changes to column titles.

Skip import row, is not valid value "" for field "type"

The error occurs when you either have not defined a column with name type in your CSV file or you are not adding any value to that column.

It also happens if you have an _ before column name like _type

Change the column title from _type to type and it should work for you.