2009 Mar 05 12:13 PM
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.
2009 Mar 05 12:20 PM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |