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

popup function with value

Former Member
0 Likes
1,018

HI All,

I need to input some values and validate the same in a dialog. Is there any built in fuctions to

accept values ?

Thank you.

Regards,

Harsha

7 REPLIES 7
Read only

Former Member
0 Likes
954

Use function module : POPUP_GET_VALUES

Regards,

Gurpreet

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
954

I think you can create a Modal Dialog Box & call it in your program. Who needs an FM for this, friend ?

POPUP_GET_VALUES doesn't validate the data input in the dialog box

Edited by: Suhas Saha on Jul 1, 2010 3:35 PM

Read only

Former Member
0 Likes
954

Try to do a search in SE37 for "POPUP_TO_CONFIRM"

Read only

Former Member
0 Likes
954

please check this,

POPUP_TO_GET_ONE_VALUE

POPUP_TO_GET_VALUE

Amol.

Read only

Former Member
0 Likes
954

Check the following example


  CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE'
EXPORTING
 DEFAULTOPTION         = 'Y'
  OBJECTVALUE          = '10000000'
 TEXT_AFTER            = 'This is after the value '
  TEXT_BEFORE          = 'This is before the value '
  TITEL                = 'Title POPUP_TO_CONFIRM_WITH_VALUE'
 START_COLUMN          = 25
 START_ROW             = 6
 CANCEL_DISPLAY       = ' '
IMPORTING
 ANSWER               = ANS
EXCEPTIONS
 TEXT_TOO_LONG        = 1
 OTHERS               = 2

Read only

Former Member
0 Likes
954

Solved it myself

Read only

0 Likes
954

Could you please share the solution.