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

Text fields in the selection screen

Former Member
0 Likes
469

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

3 REPLIES 3
Read only

Former Member
0 Likes
443

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

Read only

Former Member
0 Likes
443

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

Read only

Former Member
0 Likes
443

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