‎2010 Mar 19 12:15 PM
Hi Experts,
Is there any function module which take input a integer value with continue and cancel button.
and i want to set the label of input field and set default value for input field.
and return the input value or cancel command code.
thanks
‎2010 Mar 19 12:29 PM
‎2010 Mar 19 12:58 PM
Hi
data : sval type table of sval with header line.
sval-tabname = 'VBAP' " Find a table which has type I field
sval-fieldname = 'ANZSN'. " Pass the Field here
call function 'POPUP_GET_VALUES'
exporting
* NO_VALUE_CHECK = ' '
popup_title = 'Enter A Numeric Value'
start_column = '5'
start_row = '5'
* importing
* returncode =
tables
fields = sval
exceptions
error_in_fields = 1
others = 2
Cheerz
Ram .
‎2010 Mar 22 9:04 AM