2006 Jan 30 1:54 PM
Hi All
Is it possible to put trafic ligth indicator against each record in table control. I need to display green, red and orange indicator depending upon the status of the record.
Thanks
Ravindra Suvarna
2006 Jan 30 2:12 PM
Hi Ravindra,
In your internal table you need to create a field and populate these values for the desired traffic light indicator.
@0A@ - Red light
@08@ - Green light
@09@ - Yellow light
Hope this helps.
Regards,
Sudheer
2006 Jan 30 2:01 PM
Use another field in table control which will display ICON_GREEN_LIGHT/ICON_YELLOW_LIGHT/ICON_RED_LIGHT based on the condition. You need to set the relavant ICON.
2006 Jan 30 2:04 PM
2006 Jan 30 2:11 PM
Hi Rich
Thanks for the details.
Which element type i should assign to status field in table control to display the trafic light indicator.
thanks
Ravindra Suvarna
2006 Jan 30 2:04 PM
Try:
* Icons
TYPE-POOLS: icon.
DATA: balance_icon(132).
call function 'ICON_CREATE'
exporting
name = icon_green_light
info = 'OK Result'
importing
result = balance_icon.
Rob
2006 Jan 30 2:12 PM
Hi Ravindra,
In your internal table you need to create a field and populate these values for the desired traffic light indicator.
@0A@ - Red light
@08@ - Green light
@09@ - Yellow light
Hope this helps.
Regards,
Sudheer
2006 Jan 30 2:24 PM
Hi All
I want to display trafic light indicator against EACH RECORD IN TABLE CONTROL. TRAFIC LIGHT COLOR CAN BE RED, GREED OR ORANGE. please let me know the element type to be used in table control display this.
Please Advice.
Ravindra Suvarna
2006 Jan 30 2:33 PM
2006 Jan 30 2:41 PM
2006 Jan 30 2:42 PM