2006 May 05 2:09 PM
Hi all,
How can I provide a tool tip for an icon that is displaying in one of the cells of a table control.
Regards,
Phani
Hi all,
How can I provide a tool tip for an icon that is displaying in one of the cells of a table control.
Regards,
Phani
2006 May 05 2:12 PM
You can refer the sample programs:
BCALV_DEMO_TOOLTIP
SALV_TEST_TOOLTIPS
Regards,
Ravi
2006 May 06 7:38 AM
Hi Ravi/Abhijit,
Thanks for the replies.
But i have to provide tooltip for an icon that is getting displayed in one of its cells.
Regards,
Phani
2006 May 06 8:59 AM
did you check the demo program mentioned by Ravi
BCALV_DEMO_TOOLTIP
Raja
2006 May 06 9:56 AM
Hi Raja,
I have checked the program mentioned by Ravi. It is an ALV Program. But I am trying to display tooltip for an icon that is displayed in a table control not in ALV Grid/List display.
Regards,
Phani
2006 May 06 12:10 PM
sorry i didnt notice that you were asking this in table control.
i will check out and get back
Regards
Raja
2006 May 06 12:37 PM
Hi
Run the trx ICON, here you can see all codes of SAP icon.
In the PBO of your screen:
LOOP AT ITAB....
MODULE SHOW_ICON.
ENDLOOP.
MODULE SHOW_ICON.
ITAB-ICON = '@XX@'.
ENDMODULE.
The field ITAB-ICON should be for ONLY OUTPUT
Max
2006 May 06 12:49 PM
getting the icon is not the issue, how to get the tool tip for the icon?
Regards
Raja
2006 May 08 7:23 AM
Hi Max,
Thanks for the reply. But how can i provide tooltip or color information for that particular icon.
Regards,
Phani
2006 May 05 2:27 PM
Hello Phani,
DATA: INFO(20) VALUE 'Information'.
WRITE: / SY-UNAME QUICKINFO 'User name'.
2006 May 08 7:29 AM
Try using this..
include <icon>.
DATA: INFO(20) VALUE 'Information for this icon'.
WRITE: / ICON_INFORMATION AS ICON QUICKINFO info
HOTSPOT COLOR COL_POSITIVE.