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

Custom pop up selection screen .

Former Member
0 Likes
4,195

Hi

I have to create this popup in an enhancement in PAI .

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,856
  • You need to create a Function module. In the enhancement you need to call the FM
  • In the function module, you have to call a modal dialog screen using

             CALL SCREEN XXXX starting at x1 y1 ending at x2 y2.

  • The screen XXXX will have the same layout as your custom popup screen.
  •   In the PBO, you have to create your own GUI status.

                SET GUI_STATUS 'CUSTOM'.

  • The user command will be handled in the PAI of the screen.

Hi

I have to create this popup in an enhancement in PAI .

3 REPLIES 3
Read only

custodio_deoliveira
Active Contributor
0 Likes
2,856

Good luck!

Read only

former_member188827
Active Contributor
0 Likes
2,856
  • Check FM "POPUP_GET_VALUES_USER_BUTTONS". You can also search POPUP* fms in se37.
  • Create your own modal dialog box screen

Regards

Read only

Former Member
0 Likes
2,857
  • You need to create a Function module. In the enhancement you need to call the FM
  • In the function module, you have to call a modal dialog screen using

             CALL SCREEN XXXX starting at x1 y1 ending at x2 y2.

  • The screen XXXX will have the same layout as your custom popup screen.
  •   In the PBO, you have to create your own GUI status.

                SET GUI_STATUS 'CUSTOM'.

  • The user command will be handled in the PAI of the screen.