‎2010 Jul 01 10:55 AM
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
‎2010 Jul 01 11:01 AM
‎2010 Jul 01 11:03 AM
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
‎2010 Jul 01 11:06 AM
‎2010 Jul 01 12:16 PM
please check this,
POPUP_TO_GET_ONE_VALUE
POPUP_TO_GET_VALUE
Amol.
‎2010 Jul 01 12:33 PM
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
‎2010 Jul 02 11:08 AM
‎2011 May 28 5:11 PM