Can an APEX application work well with PL/SQL package global variables?
I am testing a case where I set the package variable value in an APEX Process on page load. Then I use this variable in a Dynamic Action, but it contains an empty value.
Is it because of stateless nature of APEX? Does a Dynamic Action use a different database session and therefore is not aware of the value of package variable that was set in another session? Is there any solution to this situation?
Thank you.