How To Assign Classification class to product In Hybris through impex
Asked
Active
Viewed 2,147 times
0
-
How to assign the classificationclass to product? – Shivakumar M A Sep 06 '17 at 19:35
2 Answers
3
ClassificationClass will be assigned same as Categories to Product since ClassificationClass extends Category only.
Example :
INSERT_UPDATE ClassificationClass; code[unique = true]; $catalogVersion; name[lang = en]
; classificationClass; ; classificationClass
UPDATE Product; code(code)[unique = true]; catalogVersion(catalog(id[default = $catalogName]), version[default = 'Online'])[unique = true] supercategories(code)[mode = append];
; testProduct; ; classificationClass

Free-Minded
- 5,322
- 6
- 50
- 93
1
INSERT_UPDATE Product;code[unique=true];$feature1;$feature2;$feature3;$feature4;$feature6;$feature7;$feature8;$catalogVersion;
You may check products-classifications.impex for examples

Winston
- 1,800
- 2
- 20
- 30
-
INSERT_UPDATE Product;code[unique=true];$feature1;$feature2;$feature3;$feature4;$feature6;$feature7;$feature8;$catalogVersion; This one is to assign the features to product.. My question is how to assign the classificationclass to product.... – Shivakumar M A Sep 06 '17 at 19:32