DBA Data[Home] [Help]

APPS.XLA_CMP_CREATE_PKG dependencies on USER_SOURCE

Line 34: | user_source only if the log level is stmt |

30: | compilation but only when the package body is|
31: | created. |
32: | 28-JUL-04 A.Quaglia Changed message tokens |
33: | 08-JUN-05 W.Chan Updated dump_package to loop the package from|
34: | user_source only if the log level is stmt |
35: | |
36: +===========================================================================*/
37:
38: --

Line 189: FROM user_source us

185: ,p_package_type VARCHAR2)
186: IS
187: SELECT us.text
188: , us.line
189: FROM user_source us
190: WHERE us.name = UPPER(p_package_name)
191: AND us.type = UPPER(p_package_type)
192: ORDER BY line
193: ;