‎2007 Oct 16 10:44 AM
Hi,
Is there any function module which popups a window and asks for entry of some text or material number.
thanks.
ashok
‎2007 Oct 16 10:46 AM
‎2007 Oct 16 10:46 AM
Hi,
Use the FM "POP_UP_TO_CONFIRM" to get the pop up window.
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.
Thanks.
Reward If Helpful