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: 

how to display Popup window

Former Member
0 Kudos
120

Hi,

In my screen i have a button for display quotation...if i click that button it should give a popup asking for quotation number

How to get this.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
90

Hello,

If U want to display the POPUP which gets input from user. Make use of the FM

POPUP_GET_VALUES

Vasanth

7 REPLIES 7

former_member181962
Active Contributor
0 Kudos
90

Use this statement.

call screen '0100' starting at 10 10 ending at 50 50.

Create the screen '0100' with a lone field Quotation.

Regards,

Ravi

Former Member
0 Kudos
91

Hello,

If U want to display the POPUP which gets input from user. Make use of the FM

POPUP_GET_VALUES

Vasanth

Former Member
0 Kudos
90

hi sumi,

check the FM POPUP_GET_VALUES.

regards,

priya.

Former Member
0 Kudos
90

Hello,

Create the screen '0100' with the screen type as <b>model dialog box</b> (in the screen attributes).In the layout of the screen,you can have a <b>field Quotation</b>.

Now you can call the screen with the X and Y coordinates ie.

call screen '0100' starting at 10 10 ending at 100 100.

Regards,

Beejal

**reward if this helps

Former Member
0 Kudos
90

Create one more screen with only one field Quotation Number in your report and call the screen using:

call screen '<XXXX>'

starting at 10 10

ending at 50 50.

Thanks.

Former Member
0 Kudos
90

Hi,

Create a Screen <NNNN> in the Se51, here the Screen type should be the Model Dialog box, you need to select this in the screen attributes, then in the screen create a Input field to enter a Quotation number.

Then, when you click the Pushbutton, a Command will be triggerd, so based on this Sy-ucomm you need to call that Dailog screen with x axis and Y axis.

call screen '0100' starting at 10 10 ending at 100 100.

Regards

Sudheer

Former Member
0 Kudos
90

USe this FM

<b><b>POPUP_GET_VALUES</b></b>

And Pass the Table name and Field Name. and run this