Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Message Pop-up

Former Member
0 Likes
511

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

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
493

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

Read only

0 Likes
493

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

Read only

0 Likes
493

Thanks Rich for your feedbacks...

JIM

Read only

0 Likes
493

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