on ‎2009 Jan 05 2:54 PM
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?
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.