‎2008 May 19 4:33 PM
Hi,
How do u convert German language description in programs into English language. Is there any tool to convert.
Thanks in advance.
Regards,
nagaraju
‎2008 May 19 4:40 PM
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
‎2008 May 19 4:48 PM
‎2008 May 20 11:14 AM
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.