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: 

Nelp help in Pop-Up Screen Creation

Former Member
0 Kudos

Hi All,

I have a button in application bar in my ALV Report and I need to display a pop-Up screen up on clicking that button.

Can any body help me.

Regards,

Srinivas

5 REPLIES 5

Former Member
0 Kudos

hi,

You can use the function module "POPUP_TO_CONFIRM" to display a pop up.

You can give the question to be displayed in that pop up box.

Hope this helps, Do reward.

abapdeveloper20
Contributor
0 Kudos

Hi,

i'l help u....Which type of ALV report????

0 Kudos

This message was moderated.

Former Member
0 Kudos

try this FM"POPUP_TO_CONFIRM"

gurunathkumar_dadamu
Active Contributor
0 Kudos

Hi Srinivas rao,

Try the below logic.

in any FM to display.

     CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' or 'ALV_GRID_DISPLAY.

      EXPORTING

          i_callback_program       = sy-repid

       i_callback_user_command  = 'USER_COMMAND'.

then write the form statement.

FORM user_command USING ucomm    TYPE sy-ucomm

                            selfield TYPE slis_selfield.

  CASE ucomm.

WHEN 'BUTTON NAME'.

use FM  'POPUP_TO_CONFIRM'.

*ENDFORM.

Let me know if  any issue.

Regards,

Guru