cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SmartForms Language

david_escofettrenado
Participant
0 Likes
900

Hi,

We have three languages installed in SAP. Spanish, English and German. If an user executes the SmartForms standard in other language (for example Italian) it should be printed by default in English.

How we can set as default English language without modify program control?

View Entire Topic
Former Member
0 Likes

Hi,

In the smartforms insert program lines in the starting window.

Write the lines below.

IF CONTROL_PARAMETERS-LANGU = 'ES' OR

CONTROL_PARAMETERS-LANGU = 'EN'

CONTROL_PARAMETERS-LANGU = 'DE' .

LV_LANGU = CONTROL_PARAMETERS-LANGU .

ELSE.

LV_LANGU = 'EN'.

ENDIF.

Then use the &LV_LANGU& as the language for all the standard texts inside in the smartform.

LV_LANGU is to be declared in the global definitions.

Regards,

Ram

Edited by: Ramakrishna Peri on Jan 6, 2009 11:47 AM

Former Member
0 Likes

CONTROL_PARAMETERS-LANGU ?

ZF--> M?

EN--> E?