‎2005 Dec 05 6:51 AM
Hi all!!
I have to create a popup window with the input field..
Any one know how can I do this??
Thank you in advance..
DIANA
‎2005 Dec 05 6:55 AM
If you want to input for String use CC_POPUP_STRING_INPUT.
if you want int use CC_POPUP_INT_INPUT
regards
vijay
‎2005 Dec 05 6:53 AM
hi you can use
CC_POPUP_INT_INPUT
CC_POPUP_STRING_INPUT
regards
vijay
‎2005 Dec 05 6:55 AM
If you want to input for String use CC_POPUP_STRING_INPUT.
if you want int use CC_POPUP_INT_INPUT
regards
vijay
‎2005 Dec 05 7:19 AM
You can use the follwing code snippet.
plz reward point if it hlps you.
data: str type string,
numb type i.
*--
CALL FUNCTION 'CC_POPUP_INT_INPUT'
EXPORTING
property_name = 'Enter Integer Value'
changing
int_value = numb.
*--
CALL FUNCTION 'CC_POPUP_STRING_INPUT'
EXPORTING
property_name = 'Enter String Value'
changing
string_value = str.
*----
Write:/ 'your input Values :',str,numb.
‎2005 Dec 06 2:49 PM
‎2005 Dec 05 6:57 AM