LSMW and FTP Upload Chinese Or Non English Characters

ERP In SAP ==> LSMW

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?

First, check with your Basis people to ensure that your SAP system support Unicode.

Change the coding of the text file from default value 'ANSI' to 'UTF-8', the Chinese can then be showed.

Save the file as Unicode Text (*.txt) using your Excel.

In Excel :

  • File
  • Save As
  • Other Formats
  • Unicode Text (*.txt)
Also, make sure that your SAPGUI multi byte is turn on.

In SAPGUI :

  • Customizes Local Layout (Alt + F12)
  • Options
  • I18N
  • Tick Activate Multibyte Functions to Support :
      • Different character sets including multibyte
      • Asian text input with global IME
The new setting takes effect when you restart the SAPGUI program.

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.
 

I use the following code to upload file to FTP server:

call function 'FTP_R3_TO_SERVER'
  exporting
     handle = p_handle
     fname = p_filename
     character_mode = 'X'
  tables
     text = i_file
     exceptions
     tcpip_error = 1
     command_error = 2
     data_error = 3
    others = 4.

But after upload, I find all Chinese Character display as ‘#’. 
By the way, I use ECC6.0 to do development.
How can I let the Chinese display correctly?

Please check SM59 connection SAPFTP or SAPFTPA in tab Unicode tab.

SAP LSMW

SAP Books
SAP Certification, Interview Questions, ABAP Programming, Functional and Basis Component Reference Books

LSMW Tips
SAP Data Migration with LSMW

Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.erpgreat.com

All the site contents are Copyright © www.erpgreat.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies.  The site www.erpgreat.com is in no way affiliated with SAP AG. 
Every effort is made to ensure the content integrity.  Information used on this site is at your own risk. 
 The content on this site may not be reproduced or redistributed without the express written permission of 
www.erpgreat.com or the content authors.