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
2,963

Hi,

Can anyone help me in this . I need to convert a text field stored in a table , from language english to french. Is there any function module for the conversion to be done.Points wud be rewarded for correct answers.

Regards

Abhishek

13 REPLIES 13
Read only

Former Member
0 Likes
1,748

Hi Abhishek,

You can use transaction SE63 to do this. Depending on the SAP release the menupath is a little bit different. For 46C it is Translation -> Short text -> Data dictionary -> data elements.

Kind regards,

John.

Read only

0 Likes
1,748

Hi,

I think you didn't get it right . I need to do this in a report program. For this i require a function module for language conversion.Please suggest me a function module.

Regards

Abhishek

Read only

0 Likes
1,748

Hi,

It is not a standard text. The text is stored in a table . I need to extract this text from the table in a report and do a language conversion. For this i require a function module or any other logic.

Regards

Abhishek

Read only

0 Likes
1,748

Hope u can look into this fm SKTY_SE63_X_INTERFACE_CONVERT and LXE_PP1_TRANSLATION_EVAL_SE63

regds

gv

Message was edited by: Venkatesan Ganesan

Read only

0 Likes
1,748

Hi,

If you provide me some example code for this it wud be greatly helpful.

Thanks

Abhishek

Read only

Former Member
0 Likes
1,748

If you are talking about Standard Text.

Then you can use SO10 Tcode and Use Utilities --> Copy from Client.

Read only

Former Member
0 Likes
1,748

Abhishek,

May be u can debug se63 to find out which FM it uses...

Prash.

Read only

0 Likes
1,748

Hi,

I did that Prash but couldn't find any suitable solution.

Regards

Abhishek

Read only

0 Likes
1,748

which version of R/3 you are using. if its WAS6.2 and above we can use some freely available webservice to do the translation.

let me know the R/3 version, i will post a code sample for the same.

Regards

Raja

Read only

0 Likes
1,748

Just see the usage of LXE_PP1_TRANSLATION_EVAL_SE63 in include pgm LSKTYF01

Read only

0 Likes
1,748

Hi Durairaj,

The version is WAS 6.2 .

Regards

Abhishek

Read only

Former Member
0 Likes
1,748

one suggestion from my side

ignore it if not suitable.

1. remove all hardcoded text from your report i.e. all text in single qotes. like write 'hello...'. or message with 'hello...'. And instead of this place text element txt-001, txt-002 ...........so on .( i have done this for our product and now it is available in six languages), tell me if you need details.

2. if you looking for examples related to a FM, goto se37, enter FM name. and press 'Where Used' button.

regards

Read only

Former Member
0 Likes
1,748

Hi,

You have to create your own translation dictionary.

Create a Ztable with the corresponding translation.

Ztable fields:

1- original language

2- translated language

3- original text field or expression

4- translated text field or expression

example:

EN FR house maison

FR EN auto car

FR DE bonjour guten tag

Sylvain

Message was edited by: Sylvain Mercier