I need to pass some query params from one apex app to another, so I am passing these as query params.
The format of an Oracle APEX URL is something along the lines of:
And the URL I am passing looks something like:
http://apex.oracle.com/pls/apex/f?p=AppId:PageId:Session:MY_PARAM_NAME:MY_PARAM_VALUE
I'm constructing the url in javascript.
My questions are:
- Does apex provide any Javascript utilities for constructing these URLs or am I on my own?
- Also, on the receiving page end, how do I access these query params? Are there Apex javascript utilities that will let me grab all the query params?
- If not javascript, is there another way I can access these query params?
Thanks.