Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function module for popup window and take input

Former Member
3,249

Hi,

Is there any function module which popups a window and asks for entry of some text or material number.

thanks.

ashok

2 REPLIES 2
Read only

Former Member
0 Likes
974

SE37 search for

POPUPVALUE*

Read only

Former Member
974

Hi,

Use the FM "POP_UP_TO_CONFIRM" to get the pop up window.

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.

Thanks.

Reward If Helpful