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: 

regarding basic question::::::

Former Member
0 Kudos

hi experts,

1)how to get the pop up screen ?the first screen as display button ,if we press that button then pop up screen has to come with same information?

2)with out doing any action how to go another screen ,means when ever control comes to that particular field this action has to be done?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Ravi,

Pop up screen will come by calling using:

call screen XXXX starting at XXX XXX ending at XXX XXX.

Catch the user command for that screen and in thePAI call the other screen.

Ok

Thank you.

3 REPLIES 3

Former Member
0 Kudos

Hi Ravi,

Pop up screen will come by calling using:

call screen XXXX starting at XXX XXX ending at XXX XXX.

Catch the user command for that screen and in thePAI call the other screen.

Ok

Thank you.

former_member223537
Active Contributor
0 Kudos

1. CALL SCREEN XXX or for confirmation use FM 'POPUP_TO_CONFIRM'.

2. This is not possible in SAP. User has to generate a Event i.e. either Click on a Button etc

varma_narayana
Active Contributor
0 Kudos

Hi..

1. how to get the pop up screen ?the first screen as display button ,if we press that button then pop up screen has to come with same information?

Create a Screen in Se51 with Screen Type as Modal dialog.

Then in the PAI based on the Function code (OK_Code) call it using:

CALL SCREEN <NO> STARTING AT 3 10 ENDING AT 15 30.

2)with out doing any action how to go another screen ,means when ever control comes to that particular field this action has to be done?

It is not possible without any action. You must perform some action like Enter or F4 help.

<b>REWARD IF HELPFUL.</b>