cancel
Showing results for 
Search instead for 
Did you mean: 

Adding icons in powerlists (POWL)

Former Member
0 Kudos

Hi Friends,

I need help regarding adding of icons in powerlists. I checked the fieldcatalog. There are 2 parameters: icon_src & icon_src_ref. I am not getting what has to be put in these parameters to get the icon. Also tell me whether i need to look in some other params. Pls help.

Regards,

Saud

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

Try with these values :

ls_fcat-icon_src_ref = 'ATTACHMENTS_ICON'.**

ls_fcat-icon_src_ref = 'ALERT_ICON'.**

*icon_src_ref = 'OPT_ARCHIVE_ICON'.*

Former Member
0 Kudos

Already tried that , it's not working.

Former Member
0 Kudos

hi,

Check out your Get_objects method.

You can have to give the value for the particular column there so as to have an icon .

Firstly you need to add one more column for the icon and then set its value in Get_Object.

Finally assign src_ref with the name of Attribute created.

In Get Objects write :

Loop at lt_object into ls_object.

ls_object-attachments_icon = '~Icon/Attachment'.

APPEND ls_object TO mt_object.

endloop.

In field Catalog method write this :

ls_fcat-icon_src_ref = 'ATTACHEMENTS_ICON'.

I hope it is clear.

Former Member
0 Kudos

Thanks a lot man. I got the solution.

Answers (0)