I am working on ASp.net project with backend Oracle DB.
I created a new package with stored procedures to the DB. and Called a stored procedure from package. I am getting following error.
ORA-04067: not executed, package body "WB_APP_MANAGER.WB_PCK_APP_MANAGER" does not exist
ORA-06508: PL/SQL: could not find program unit being called: "WB_APP_MANAGER.WB_PCK_APP_MANAGER"
ORA-06512: at line 1
Please let me know How to solve this issue.
Thanks
Your package specification may be in place but your package body seems to be missing. For any package which is executed the package body must also exist.
The above query must report both PACKAGE and PACKAGE BODY.
If PACKAGE BODY is not reported by the query you need to create the package body.
create or replace package body WB_PCK_APP_MANAGER as