As part of the sentry function, I try to set the values of two Shared application items in the PL/SQL code like this:
:USERID := l_userid;
:ACCOUNTID := l_accountid;
Through logging, I know that the l_userid and l_accountid variables have a value at runtime. But when I try referencing the shared application items in my application after finishing the login validation, they are null. What am I doing wrong?