‎2008 Jul 22 3:47 PM
Hi all, I want to upload vendor master data to SAP system in LSMW, but when I fill the fields in Chinese, the Chinese texts will not be showed. The Chinese texts show as messy codes, how should I do if I want to show the Chinese? Many thanks in advance!
‎2008 Jul 23 1:33 PM
ANSI only supports the standard 256 characters you see on your typical keyboard (single byte). UTF-8 supports the 65,536 Unicode character set (double byte) needed to handle all the different languages used throughout the world. If you send Unicode but tell the system to expect ANSI it will read each double byte Unicode character as two single byte ANSI characters. Which will turn it all into gibberish.
‎2008 Jul 22 4:32 PM
Is your SAP system Unicode?
What is the format of the upload file? UTF-8?
‎2008 Jul 23 5:51 AM
‎2008 Jul 23 7:52 AM
Many thanks for your help, After I change the coding of the text file from default value 'ANSI' to 'UTF-8', the Chinese can be showed, would please tell me the reason? Why I should use 'UTF-8'?
‎2008 Jul 23 1:33 PM
ANSI only supports the standard 256 characters you see on your typical keyboard (single byte). UTF-8 supports the 65,536 Unicode character set (double byte) needed to handle all the different languages used throughout the world. If you send Unicode but tell the system to expect ANSI it will read each double byte Unicode character as two single byte ANSI characters. Which will turn it all into gibberish.