Error processing request - Contact your application administrator apex 20.1
After upgrading 11.2.0.4 to 19c with apex 20.1 accessing apex_admin/apex pages was throwing “Error processing request”
Contact your application administrator.
There were three invalid objects for APEX_200100
WWV_FLOW_SESSION_RAS
WWV_FLOW_WIZARD_API
WWV_FLOW_DATA_LOADER
Tried compiling these objects but compile was completing with
PL/SQL: ORA-00942: table or view does not exist
To resolve the issue following rant needs to be given then compile (ran both grant and compile as sysdba)
grant select on SYS.DBA_XS_DYNAMIC_ROLES to APEX_200100;grant select on SYS.DBA_TAB_IDENTITY_COLS to APEX_200100;
alter package APEX_200100.WWV_FLOW_SESSION_RAS compile body;alter package APEX_200100.WWV_FLOW_WIZARD_API compile body;alter package APEX_200100.WWV_FLOW_DATA_LOADER compile body;
Returned 0 invalid object for APEX_200100
select * from dba_objects where status = 'INVALID' and owner = 'APEX_200100' ;
Now both admin and apex pages are loading properly
Hello Good morning, I had the same problem and my situation was that I have a link that connects with an oracle database different from the one that oracle apex is hosted on, this link with a public ip so the problem was communication with the checkpoint and the database, change the link to the local ip and the problem disappeared.
ReplyDeleteThanks heaps for this. Saved me a lot of digging!
ReplyDeleteAfter updating oracle 11gr2 to 19c we had the same issue, but because of your blog, I saved lot of time.
ReplyDeleteMany thanks.