Application Development 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: 

Messages in alv grid..

Former Member
0 Kudos

Hi All,

Is there any way build custom message po ups and to adjust the position of a message

when its displaying in an alv grid. Ex : middle of the screen, left bottom with Company LOGO

1 ACCEPTED SOLUTION

tharaka_fernando
Contributor
0 Kudos

use the 'POPUP_TO_CONFIRM'.. you will find the solution

5 REPLIES 5

vinod_vemuru2
Active Contributor
0 Kudos

Hello,

You can use FM POPUP_TO_CONFIRM in USER_COMMAND routine. Position can be entered in FM parameters. But if you want LOGO as well in the popup, You may have to create a screen and use call screen command.

Thanks,

Vinod.

Former Member
0 Kudos

himanshu_gupta13
Employee
Employee
0 Kudos

Hi,

You can use module function 'POPUP_TO_CONFIRM' or

'RKE_POPUP_TEXT_DECIDE_VARTEXT'

Many Thanks / Himanshu Gupta

former_member184569
Active Contributor
0 Kudos

Check this link. Hope it helps.

This shows how to call a subcreen with a logo. You can create confirm buttons also in it with the menu painter, and the screen positions (the x and y co-ordinates)  can also be set while calling subscreen.

http://scn.sap.com/thread/1202337

The screen positions (the x and y co-ordinates)  can also be set while calling subscreen.

CALL SCREEN 200 STARTING AT 1 1.

The confirm buttons can be set in the menu painter and the function codes handled in the PAI.

The description for the message can be given in the title bar or as a text field in the screen.


Revert in case of any doubts.

tharaka_fernando
Contributor
0 Kudos

use the 'POPUP_TO_CONFIRM'.. you will find the solution