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

POPUP WINDOW

Former Member
0 Likes
831

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
773

If you want to input for String use CC_POPUP_STRING_INPUT.

if you want int use CC_POPUP_INT_INPUT

regards

vijay

5 REPLIES 5
Read only

Former Member
0 Likes
773

hi you can use

CC_POPUP_INT_INPUT

CC_POPUP_STRING_INPUT

regards

vijay

Read only

Former Member
0 Likes
774

If you want to input for String use CC_POPUP_STRING_INPUT.

if you want int use CC_POPUP_INT_INPUT

regards

vijay

Read only

0 Likes
773

You can use the follwing code snippet.

plz reward point if it hlps you.

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.

Read only

0 Likes
773

Thank you for your help

DIANA

Read only

Former Member
0 Likes
773

Hi,

Use POPUP_TO_GET_VALUE or POPUP_TO_GET_ONE_VALUE

Sri