DBA Data[Home] [Help]

APPS.HR_BUILD_NAME_TRG_PKG dependencies on USER_SOURCE

Line 41: FROM user_source

37:
38: -- cursor text_line returns all source code lines of the package body
39: CURSOR text_line(p_pkb_name VARCHAR2) IS
40: SELECT text
41: FROM user_source
42: WHERE name = p_pkb_name
43: and type = 'PACKAGE' --Bug# 2858437
44: ORDER BY line;
45: BEGIN