Application Development 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: 

Icon + Text in ALV a field ????

Former Member
0 Kudos

I want to add icon + text a field. But I cant it .

My Code is :


MOVE :  '@66@ Contract'       TO gt_ot_1-state , 
"-------------OR-------------------------------------
CONCATENATE  '@66@' ' Contract'  INTO lv_text .
     gt_ot_1-state = lv_text .

Problem is here : http://img11.imageshack.us/img11/4892/wwsds.jpg

Thanks For Reply

Serkann .

2 REPLIES 2

Former Member
0 Kudos

Hi,

Please check this thread..

Thanks

Naren

Former Member
0 Kudos

I try This example .

Problem not solved . My alv type is : 'REUSE_ALV_FIELDCATALOG_MERGE' ..

Example is : 'REUSE_ALV_LIST_DISPLAY'


DATA   :   BEGIN  OF gt_ot_1 OCCURS 0   ,
            docno  LIKE  eban-banfn     , 
         state(20) TYPE  c              ,  
         button(20)  TYPE c          ,
  END OF gt_ot_1               .

Lt_ot-button = '@33@ Contract'.

Look at picture : http://img11.imageshack.us/img11/4892/wwsds.jpg

Thanks Reply

Serkann ..