cancel
Showing results for 
Search instead for 
Did you mean: 

Coversion of Fixed Texts and Dynamic Texts in Smartforms

sarat_babu1
Discoverer
0 Kudos

Hi ,

How can we translate fixed and dynamic texts based on say a criteria such as one country name.

For example if the language is german then translate all of the Fixed Texts and Dynamic Texts into german and if its chinese transalte all Fixed Texts and Dynamic Texts in smartforms to chinese.

Regards,

Sarat

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

U need to translate the smartform by trx SE63

Max

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Yes you can do this using FM 'SSFRT_READ_TEXT' & db table STXFTXT.

First goto this table and display entries.

Give formname , language = 'EN'. ( I guess your texts in smartform are originally in english ).

execute.

U will see all the entries for fixed texts maintained in smartform.

u can see that texts are in field tdline.

for each text there is text name in field " INAME ". Note this textname.

This text name is nothing but what u maintained in smartform while creating text in name field.

now goto FM 'SSFRT_READ_TEXT' and execute.

enter import parameters as - I_FORMNAME = SMARTFORM NAME.

I_TEXTNAME = text name got from table.

I_LANGUAGES = enter language u want.

execute.

U will get translation for that text in export parameter O_TEXT.

For one line u get one entry.

I think this will help to solve your problem.

Regards