DBA Data[Home] [Help]

APPS.HR_API_USER_HOOKS_UTILITY dependencies on USER_ERRORS

Line 522: from user_errors uer

518: where ahc.api_hook_id = ahk.api_hook_id
519: and ahc.enabled_flag = 'Y'
520: and ahc.status = 'I')
521: or exists (select null
522: from user_errors uer
523: where uer.type = 'PACKAGE BODY'
524: and uer.name = ahk.hook_package)
525: )
526: order by ahk.hook_package;

Line 559: from user_errors

555: --
556: cursor cur_pkg_err (p_hook_package varchar2) is
557: select substr(to_char(line) || '/' || to_char(position), 1, 8) line_col
558: , text
559: from user_errors
560: where type = 'PACKAGE BODY'
561: and name = p_hook_package
562: order by sequence;
563: --