Data Conversion 

Between communications systems, which work with the ASCII character set and systems using the EBCDIC character set, data conversion must normally be performed by the application program, unless the partner system is used only for archiving binary data.

It may be necessary to make special considerations for country-specific code pages. You can build your own conversion tables within an ABAP program and access them using the TRANSLATE command.

TRANSLATE <buffer> USING <tab>.

TRANSLATE <buffer> FROM CODEPAGE <code_1>
TO CODEPAGE <code_2>.