In a nutshell, the procedure could not determine the correct security group ID after we upgraded the database to 12.2.
They asked me to help to figure out what was going on as they claimed that the code had not been changed.
Here is some background on that issue. We are using the following version of APEX which is certified against 12.2:
1 2 3 4 5 | SQL> SELECT VERSION_NO FROM APEX_RELEASE; VERSION_NO ------------ 5.1.2.00.09 |
However, it does not do it in our version of APEX and 12.2 anymore. I constructed a simple test case to demonstrate the changed behavior:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | SQL> grant connect , create procedure to tc_owner identified by tc_owner; Grant succeeded. SQL> SQL> grant execute on apex_050100.wwv_flow_security to tc_owner; Grant succeeded. SQL> SQL> create or replace procedure tc_owner.p 2 is 3 begin 4 dbms_output.put_line(apex_050100.wwv_flow_security.get_owner_of_calling_code); 5 end ; 6 / Procedure created. SQL> create or replace package tc_owner.pkg 2 is 3 procedure p; 4 end ; 5 / Package created. SQL> SQL> create or replace package body tc_owner.pkg 2 is 3 procedure p 4 is 5 begin 6 dbms_output.put_line(apex_050100.wwv_flow_security.get_owner_of_calling_code); 7 end p; 8 end ; 9 / Package body created. SQL> grant connect to tc_connect identified by tc_connect; Grant succeeded. SQL> grant execute on tc_owner.p to tc_connect; Grant succeeded. SQL> grant execute on tc_owner.pkg to tc_connect; Grant succeeded. |
1 2 3 4 | TC_CONNECT@SQL> exec tc_owner.p TC_OWNER PL/SQL procedure successfully completed. |
1 2 3 4 | TC_CONNECT@SQL> exec tc_owner.pkg.p TC_CONNECT PL/SQL procedure successfully completed. |
I quickly reviewed WWV_FLOW_SECURITY.GET_OWNER_OF_CALLING_CODE and identified that it is using the DBMS_UTILITY.FORMAT_CALL_STACK function which appears to have been changed in 12.2:
DBMS_UTILITY.FORMAT_CALL_STACK Returns Subprogram Names After Upgrade to 12.2 (Doc ID 2312198.1)
Indeed, the same solution from the MOS note worked flawlessly for me, so that the problem code started to return the correct user after I applied it:
1 2 3 4 5 6 | TC_CONNECT@SQL> alter session set events '10934 level 64' ; Session altered. TC_CONNECT@SQL> exec tc_owner.pkg.p TC_OWNER |