‎2008 Jul 29 8:27 AM
Hi Experts,
In my report program, I need all the text elements in the selection screen including menu bar should be appeared in English only evenif I am logging in a different language. Is there any settings option for that?
Please help me in this regard.
Thank you
‎2008 Jul 29 8:30 AM
Hi,
While using the text elements like 'Company Code'(001)., then if the login language doesn't contain any text element, then it will be display in English only (what u have written).
To use for selection screen you can use the 'selection-screen comment, line...' and place the text for the selection screen parameter/range and use the comments in english.
Check this example code:
SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.
SELECTION-SCREEN ULINE.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN COMMENT /1(30) comm2.
SELECTION-SCREEN ULINE /1(50).
PARAMETERS: r1 RADIOBUTTON GROUP rad1,
r2 RADIOBUTTON GROUP rad1,
r3 RADIOBUTTON GROUP rad1.
SELECTION-SCREEN ULINE /1(50).
AT SELECTION-SCREEN OUTPUT.
comm1 ='Selection Screen'.
comm2 ='Select one'.
LOOP AT SCREEN.
IF screen-group1 = 'MG1'.
screen-intensified = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Edited by: Ravi Kumar on Jul 29, 2008 9:47 AM
‎2008 Jul 29 8:33 AM
hi,
You store all the TEXT elements in English and make sure there are no translation avaliable for that. Then Automatically it will be shown in english.
Regards
Sumit Agarwal
‎2008 Jul 29 8:42 AM
hI,
When you are creating a text element in English ,make sure that that you do not give assign any translation.Then the text elements would appear in english only.
Regards,
Bhumika