2007 Feb 28 12:36 PM
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.
2007 Feb 28 12:39 PM
Hello,
If U want to display the POPUP which gets input from user. Make use of the FM
POPUP_GET_VALUES
Vasanth
2007 Feb 28 12:38 PM
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
2007 Feb 28 12:39 PM
Hello,
If U want to display the POPUP which gets input from user. Make use of the FM
POPUP_GET_VALUES
Vasanth
2007 Feb 28 12:41 PM
2007 Feb 28 12:41 PM
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
2007 Feb 28 12:43 PM
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.
2007 Feb 28 12:44 PM
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
2007 Feb 28 12:54 PM
USe this FM
<b><b>POPUP_GET_VALUES</b></b>
And Pass the Table name and Field Name. and run this