‎2007 Jul 12 3:01 PM
Hi,
my analyst wants to have an icon for 'Define Totals Drilldown' which can be found under Settings when executing a program with an ALV Grid. Is that possible?
Thanx!
‎2007 Jul 12 3:19 PM
Hi ,
This is very easy. IN your status field in your internal table, you simply write the icon to it. Make sure that the status field is defined as a character field with a length of 4. Then write the icon to it.
Type-pools: icon.
.....
write icon_green_light as icon to itab-status.
...
Then when filling the field catalog, set the ICON flag. This puts the icon in the center of the cell in ALV.
....
xfc-icon = 'X'.
append xfc to ifc.
.....
<b>reward pts if found usefull :)</b>
Regards
Sathish
‎2007 Jul 12 3:28 PM
I want the icon to be next to the other icons already existing above the ALV grid