0
votes

I work on APEX 5 application and have 2 pages. On page 10 there are a tree with Selected Node Page Item set to P10_ORG_ID (hidden), Item of type Select List called P10_PERIOD and button NEXT. What I want is when press button NEXT to go to page 11 and pass values of clicked node (:P10_ORG_ID) and selected value (:P10_PERIOD) to it. How could I do this?

Thanks.

2

2 Answers

0
votes

When you edit a button, you can chose its action ("Redirect to page in this application") In the button settings, you have the option to pass a list of names ("Set these items", comma separated list) and values ("With these values", comma separated list) to the page you go to. Just fill it in to make values available.

0
votes

I did it this way: add Redirect to Page 11 action to button NEXT assigning corresponding items, add Dynamic Action on Items P10_ORG_ID and P10_PERIOD Change event with Submit Page Action and add After Processing Branch of type Page or URL (Redirect) to the same page (Page 10) with those two Items set to persist values.