DBA Data[Home] [Help]

APPS.BIS_VG_LOOKUP dependencies on ALL_TAB_COLUMNS

Line 1108: from all_tab_columns

1104: from user_objects
1105: where object_name = UPPER(p_table);
1106: cursor l_tab_view_cursor is
1107: select 1
1108: from all_tab_columns
1109: where table_name = UPPER(p_table)
1110: and column_name = UPPER(p_column)
1111: and owner = user;
1112: cursor l_tab_syn_cursor is

Line 1114: from all_tab_columns a, user_synonyms u

1110: and column_name = UPPER(p_column)
1111: and owner = user;
1112: cursor l_tab_syn_cursor is
1113: select 1
1114: from all_tab_columns a, user_synonyms u
1115: where a.table_name = UPPER(p_table)
1116: and u.table_name = UPPER(p_table)
1117: and a.owner = u.table_owner
1118: and a.column_name = UPPER(p_column) ;