Search notes:

ORA-06508: PL/SQL: could not find program unit being called

create or replace package tq84_ora_06508_pkg
   authid definer
as
   function f return number;
end tq84_ora_06508_pkg;
/
 
create or replace view tq84_ora_06508_view as
select
   tq84_ora_06508_pkg.f
from
   dual;
  
select * from tq84_ora_06508_view;
-- ORA-04067: not executed, package body "RENE.TQ84_ORA_06508_PKG" does not exist
-- ORA-06508: PL/SQL: could not find program unit being called: "RENE.TQ84_ORA_06508_PKG"

See also

Other Oracle error messages

Index