select comp_name
from dba_registry
where status ='INVALID'
>> Check if you have any invalid component?
Components are different from objects/packages like dbms_utility. You find those with:
select object_name, object_type
from dba_objects
where status=''INVALID';