‎2007 Jan 19 9:18 AM
I want to a use of a function module POPUP to take a Numeric field inside a program. That means after that I have to do some calculations with that numeric field. Can anybody please tell me which POPUP should I use?
Regards,
Subhasish
‎2007 Jan 19 9:21 AM
data: str type string,
numb type i.
*--------------if you want integer to be input-----------------
CALL FUNCTION 'CC_POPUP_INT_INPUT'
EXPORTING
property_name = 'Enter Integer Value'
changing
int_value = numb.
*--------------if you want string to be input-----------------
CALL FUNCTION 'CC_POPUP_STRING_INPUT'
EXPORTING
property_name = 'Enter String Value'
changing
string_value = str.
*-------------------------------------------------------------
Write:/ 'your input Values :',str,numb.
‎2007 Jan 19 9:21 AM
data: str type string,
numb type i.
*--------------if you want integer to be input-----------------
CALL FUNCTION 'CC_POPUP_INT_INPUT'
EXPORTING
property_name = 'Enter Integer Value'
changing
int_value = numb.
*--------------if you want string to be input-----------------
CALL FUNCTION 'CC_POPUP_STRING_INPUT'
EXPORTING
property_name = 'Enter String Value'
changing
string_value = str.
*-------------------------------------------------------------
Write:/ 'your input Values :',str,numb.
‎2007 Jan 19 9:24 AM