‎2006 Jan 09 1:39 AM
Hi,
I want to see a pop-up message whenever I mouse-over the multiple selection button of my select-option. Is there a way to do that.. Please help...
Thanks...
JIM
‎2006 Jan 09 1:53 AM
Currently the SAPgui does not support that functionality. Meaning that you can not specifically manuiplate this text in your program because selection screens are generated for you. If you were to create your own screen/gui status and include an icon for multiple selection, then you can assign the "roll over" text when defining the pushbutton.
If you run any report and mouse over a button you will see the text. Try any report, put you mouse over the mulitple selection button, and let it sit there. The text will show. If you have a custom button you can make it say what ever you want, but not with selection screens.
Regards,
Rich Heilman
‎2006 Jan 09 2:05 AM
I've been looking over this for the past couple minutes, I'm thinking that this text may not be controlable. It might be coming directly from the icon itself.
Also, it may only be possible to control the text when defining buttons on the application toolbar as opposed to the dynpro itself.
Regards,
Rich Heilman
‎2006 Jan 09 2:12 AM
‎2006 Jan 09 2:14 AM
Hi,
Rich is right.. it comes form the quickinfo parameter of the function module that creates the icon..
CALL FUNCTION 'ICON_CREATE'
EXPORTING
name = icon_name
text = button_text
info = quickinfo
* ADD_STDINF = 'X'
IMPORTING
RESULT = icon_str
EXCEPTIONS
Regards,
Suresh Datti