DBA Data[Home] [Help]

APPS.BIS_VG_LOOKUP dependencies on USER_TAB_COLUMNS

Line 696: FROM user_tab_columns

692: RETURN BOOLEAN
693: IS
694: CURSOR col_cursor IS
695: SELECT 1
696: FROM user_tab_columns
697: WHERE table_name=p_lookup_table
698: AND column_name='LANGUAGE';
699: l_return_value boolean;
700: l_dummy number;

Line 1117: from user_tab_columns col1

1113: and syn.table_owner = col.owner
1114: and col.owner = user
1115: UNION
1116: select 1
1117: from user_tab_columns col1
1118: where col1.table_name =UPPER(p_table)
1119: and col1.column_name = UPPER(p_column);
1120:
1121: cursor l_tab_syn_cursor is

Line 1130: from user_tab_columns col1

1126: and a.owner = u.table_owner
1127: and a.column_name = UPPER(p_column)
1128: UNION
1129: select 1
1130: from user_tab_columns col1
1131: where col1.table_name =UPPER(p_table)
1132: and col1.column_name = UPPER(p_column);
1133: begin
1134: BIS_DEBUG_PUB.Add('> check_lookup_exists');