DBA Data[Home] [Help]

APPS.EDW_BIS_VIEW_GEN dependencies on USER_OBJECTS

Line 13: from user_objects

9: BEGIN
10:
11: -- for bug 2378092: check if the view exists and is valid
12: select count(*) into l_count
13: from user_objects
14: where OBJECT_NAME = upper(p_view_name)
15: and OBJECT_TYPE = 'VIEW'
16: and STATUS = 'VALID';
17: