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

Language dependent Text for icon quickinfo

Former Member
0 Likes
497

Hi all,

I want to display some icons in the ALV grid .

The icon field in ALv is bind to Structure field ICON which has value like

CONCATENATE icon_move+0(3) '\QUsed Object Now Moved@' INTO lv_icontt.

in this ICON_MOVE is the icon and 'Used Object Now Moved' is the quickinfo.

\Q and @ are used to display this text with ICON.

The problem Im facing is I can very well display this is that i want to display its German version in the German Login.

Hi all,

I want to display some icons in the ALV grid .

The icon field in ALv is bind to Structure field ICON which has value like

CONCATENATE icon_move+0(3) '\QUsed Object Now Moved@' INTO lv_icontt.

in this ICON_MOVE is the icon and 'Used Object Now Moved' is the quickinfo.

\Q and @ are used to display this text with ICON.

The problem Im facing is I can very well display this is that i want to display its German version in the German Login.

1 REPLY 1
Read only

Former Member
0 Likes
427

I think wht you can try is

if sy-langu is 'EN'.

CONCATENATE icon_move+0(3) '\QUsed Object Now Moved@' INTO lv_icontt.

elseif sy-langu ' DE'

CONCATENATE icon_move+0(3) '\QUsed Objekt nun@' INTO lv_icontt.

endif.

hope it helps

Regards

Bhanu