I am trying an impex import in Hybris Administration Console to add arabic text for some products.
The arabic text is in UTF-16 LE format and English text is in UTF-8 format. Therefore, I am always getting an error:
{1=ValueEntry('عدّة البدء Single'=null,unresolved=null,ignore=false)}] - cannot import, unknown type '1234546' in line ValueLine
[,line 3 at main script,1234546,HeaderDescriptor[line 2 at main script, insert_update, Product, {}, [code, endUserShort]}
I tried setting my scrip encoding as UTF 16 LE, after which editor can not recognize the english text and produces same error.
Here is my code:
$productCatalog=Master
$catalogVersion=catalogversion(catalog(id[default=$productCatalog]),version[default='Master'])
insert_update Product;code[unique=true]; endUserShort[lang=ar_Arab]
1234546; عدّة البدء Single
Any suggestions are welcome :)