Package synonym not working
ptsdcgDec 20 2012 — edited Dec 20 2012I'm calling a PL/SQL package from my APEX application. I created a synonym for the package as follows:
create or replace synonym apex_ebs.dcrd_inv_common for dcrd_inv_common;
However, i'm getting an error:
1 error has occurred
•ORA-06550: line 10, column 3: PLS-00201: identifier 'DCRD_INV_COMMON' must be declared ORA-06550: line 10, column 3: PL/SQL: Statement ignored
Did I miss a step?
If I go to object browser and view synonyms, it shows that DCRD_INV_COMMON does exist and is valid.
Thanks.
Paul