I am running APEX 5 and from APEX page need to do some processing, set a page item value and re-direct to URL (outside of APEX). I did the following steps:
- I made the action of the button on the APEX page to do a submit (POST).
- I run a post submit page process that takes all of the appropriate record ID's and puts them into a page item ('P13_STUDENT_DCID')
- Finally, I have a post submit branch that re-directs to the URL, and I use '&P13_STUDENT_DCID.', which tells APEX to replace the name with the item value. So target looks like this:
/admin/home.html?ac=buildsel;table=Students;list=&P13_STUDENT_DCID.
The problem I have is that the '&P13_STUDENT_DCID' value can become very long, and it seems to hit a limitation on the URL line. Is there a way I can do this differently so target URL doesnt show on URL line but still re-directs?