error while importing data through impex

6.4k Views Asked by At

I am trying to insert into ProductFeature table in which product object is used. But unable to do it. How to insert values to the below impex header?

insert_update ProductFeature; product(code,catalogVersion(catalog(id[default=hpeCatalog]),version[default=Staged]))[unique=true];qualifier;value[translator=de.hybris.platform.catalog.jalo.classification.impex.ProductFeatureValueTranslator] 
;J007007;abcd;efgh
2

There are 2 best solutions below

0
On BEST ANSWER

Adding to @dj_frunza answer, since value is Object type, you need to give object type followed by its value both separated by comma (,)

INSERT_UPDATE ProductFeature; product(code,catalogVersion(catalog(id[default=hpeCatalog]),version[default=Staged]))[unique=true];qualifier;value[translator=de.hybris.platform.catalog.jalo.classification.impex.ProductFeatureValueTranslator] ;
;J007007;abcd;String,efgh
1
On

The value attribute expects two strings instead of one (instead of "efgh" there should be "efgh,ijkl") Also upper case should be used for header(i.e insert_update should be INSERT_UPDATE). I modified the impex and bellow is the version that works for me:

INSERT_UPDATE ProductFeature; product(code,catalogVersion(catalog(id[default=hpeCatalog]),version[default=Staged]))[unique=true];qualifier;value[translator=de.hybris.platform.catalog.jalo.classification.impex.ProductFeatureValueTranslator] ;
;J007007;abcd;efgh,ijkl