Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to convert ABAP Reports in other languages during runtime.

Former Member
0 Kudos

Hi Gurus,

In SAP during Log-in, I select "EN" sa my language. Is there a way where in I will log-in using English language but upon generating abap report, the result is in Chinese characters?

Thanks in advance.

5 REPLIES 5

GauthamV
Active Contributor
0 Kudos

If you use chinese data in the program then it should work.


DATA: var(20) type c.

START-OF-SELECTION.

  var = 'u6807u51C6u6587u672C'.
  write: var.

Former Member
0 Kudos

What if my data is written in English? Is there a function module wherein I can convert the English word into Chinese?

Thanks.

pole_li
Active Participant
0 Kudos

Hi,

If your program is designed for multiple language purpose, check this link:

http://www.sapdev.co.uk/country/Lang_Conv_Issues.htm

Regards,

Pole

Former Member
0 Kudos

Hi Pole,

SE63 is conversion for the text elements, z-table, etc. But my program is that value of the data is the one I need to convert. FOr example is BSEG-BUKRS. For example, value of bukrs is 2000, can I convert it to chinese equivalent of it upon generating the report?

Thanks.

andrea_olivieri
Contributor
0 Kudos

Hi,

runtime you should use the abap statement [SET LOCALE LANGUAGE |http://help.sap.com/abapdocu_70/en/ABAPSET_LOCALE.htm].

Regards,

Andrea