I have an application that sends users to a non-APEX webshop. After they are finished they are sent back to our APEX application along with custom (non-APEX) GET-variables in the URL.
The simplified URL looks like this:
f?p=101:111&orderID=12345678¤cy=EUR
How can I get the value of the parameters orderID
and currency
in APEX without using Javascript?
I am using APEX 23.2.1.
I have tried using :APP_URL
and APEX_APPLICATION.G_X01
but they both show no data.
APEX_PAGE.GET_URL
only shows the APEX-part of the URL and not the custom GET-parameters.
Any help is greatly appreciated!