cancel
Showing results for 
Search instead for 
Did you mean: 

How to get pop-up for entering some value on it by user on Adobe INTERACTIV

former_member202077
Participant
0 Kudos

Hello

We are developing a interactive adobe form,

1) User would like get some popups for entering the values in the popup and clicking either OK or CONTINUE, pls. let me know how to handle this?

2) can i get CALENDER, when user tries to input DATE entry? how its?

Accepted Solutions (1)

Accepted Solutions (1)

vaibhav_tiwari
Contributor
0 Kudos

Hi,

You can create a subform overlapping you main body page and you can use this subform as pop-up.

You just need to do following things:

1. Create a subform over you main body page in the area where you want to show the pop-up, say SF_POPUP is the name of this subform.

2. Give it a background colour(So that it looks different from the main page).

3. On this subform SF_POPUP, create the fields you want the user to enter. along with these fields create a button 'OK' or 'Continue' as per your requirement.

4. Write the below code on click event of this button:

SF_POPUP.presence = "Hidden".

5. On you main body area create a button to show this popup and write the below code on it:

SF_POPUP.presence = "Visible".

6. By default set this popup SF_POPUP as hidden from subform properties.

Hope this will help for your first requirement, for your second requirement Arvind has already given a solution.

Regards,

Vaibhav

Answers (1)

Answers (1)

Former Member
0 Kudos

1. There is USER_EVENT_POPUP standard event. The below blog explains how to implement the same.

/people/ian.stubbings/blog/2010/02/22/hcm-processes-forms-web-dynpro-abap-search-helps

2. There is a DATE UI element in the library which has the required fuctionality.

Thanks,

Aravind