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

Translation

Former Member
0 Likes
1,005

Hello All,

i am stuck with one query regarding translation from German to english in following areas:-

1. Tables

2. Structures

3. Scripts

4. Smartforms

5. views

6. message class

7. Exits.

8. class interface

9. programs

in all of them if i want to go for translation from german to english then it will not ask for any request number.so my query is how to transfer them from one system to another.

is there any way out to transfer the translated text from one system to another system.

is it related to Basis or an ABAPER have to do this task by running some report or else....???

points will awarded to all answers.

Hello All,

i am stuck with one query regarding translation from German to english in following areas:-

1. Tables

2. Structures

3. Scripts

4. Smartforms

5. views

6. message class

7. Exits.

8. class interface

9. programs

in all of them if i want to go for translation from german to english then it will not ask for any request number.so my query is how to transfer them from one system to another.

is there any way out to transfer the translated text from one system to another system.

is it related to Basis or an ABAPER have to do this task by running some report or else....???

points will awarded to all answers.

4 REPLIES 4
Read only

RaymondGiuseppi
Active Contributor
0 Likes
937

Go to SE63, there are option on how to collect translation in transport requests.

Look at <a href="http://help.sap.com/saphelp_47x200/helpdata/EN/02/5bc33e3a443907e10000000a114084/frameset.htm">Creating Requests in Transport Recording</a>

Regards

Read only

Former Member
0 Likes
937

Hi Divya,

Some times it doesnt ask for request so what you can do is translate the text say in text-elements...

Then come back to text-elements in edit mode just press <b>save</b>.

Then text elements will show status INACTIVE.Now activate it .This time it will ask for transport..

reward if useful

Read only

torsten_fenske2
Discoverer
0 Likes
937

The languages are automatically transported via the language vector setting of tp. (see transaction STMS). If the language vector is set e.g. to DE then German and English are transported. Therefore, no development request is necessary.

In order to create a transport request use RS_LXE_RECORD_TORDER.

Best regards

Torsten

Read only

Former Member
0 Likes
937

Hii Divya....

Many things needs to answer for your questions. I have created document of Smartforms translation Approach. Can mail u that. send me a mail on [email protected]. In case of smartforms use transaction SE63 for translation. You have to make use of structure ‘ssfctrlop’ to display smartform in login language. add this code in report.

Structure ‘ssfctrlop’ is used to display smartform as per Login language.

data : int_kna1 like kna1 occurs 0 with header line,

w_cparam type ssfctrlop.

w_cparam-langu = sy-langu.

call function fm_name

exporting

control_parameters = w_cparam

Login language will be passed to ‘Control Parameters’ and smartform will be displayed as per the login language. Hope this will solve your problem.

For Transporting smartforms translations, program RS_LXE_RECORD_TORDER is used.

In case of SapScript you have to make use of Transaction SO10 for translation.

Reward if useful