The information in this table are those objects owned by a user. I'm looking for those (PROCEDURE,FUNCTION) that can be execute by a user through a 'grant execute on object_name ...' statement.
select a.object_name
from all_objects a, all_tab_privs b
where a.object_type in ('PROCEDURE','FUNCTION','PACKAGE')
and a.object_name=b.table_name
and (b.grantee='user' or b.grantee='PUBLIC') ;
Bookmarks