Application Development and Automation 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: 
Read only

Language conversion

Former Member
0 Likes
624

Hi,

How do u convert German language description in programs into English language. Is there any tool to convert.

Thanks in advance.

Regards,

nagaraju

3 REPLIES 3
Read only

Former Member
0 Likes
522

Hi,

try like this.

First, using READ_TEXT function module you can read the text.

If that is in Geramn...do like this.to convert it into English.

DATA: v_lang TYPE tcp0c-langu,

v_cntry TYPE tcp0c-country,

v_mod TYPE tcp0c-modifier.

GET LOCALE LANGUAGE v_lang COUNTRY v_cntry MODIFIER v_mod.

SET LOCALE LANGUAGE 'E' COUNTRY V_cntry.

write : / text. "will be displayed in english.

SET LOCALE LANGUAGE v_lang COUNTRY V_cntry.

Regards

Sandeep Reddy

Read only

Former Member
0 Likes
522

Hi,

Try SE63.

Read only

Former Member
0 Likes
522

hi,

translate short texts and long texts in the respective editors within transaction SE63. To call up this transaction, either:

u2022 Enter /NSE63 in the command field in the initial screen of the R/3 System

u2022 Choose Tools u2192 ABAP/4 Workbench u2192 Utilities u2192 Translation u2192 Short/Long texts on theinitial screen of the R/3 System.

You can translate texts either:

u2022 By using a worklist

u2022 By calling up the objects directly.

pls reward if helpful.