DBA Data[Home] [Help]

APPS.JTF_QUALIFIER_PVT dependencies on ALL_SYNONYMS

Line 286: from all_synonyms

282: WHERE column_name = UPPER(l_column_name)
283: AND table_name = UPPER(l_table_name)
284: AND owner =
285: (select table_owner
286: from all_synonyms
287: where synonym_name = UPPER(l_table_name)
288: and owner = l_apps_schema);
289:
290: -- column datatype

Line 464: from all_synonyms

460: FROM ALL_TAB_COLUMNS
461: WHERE table_name = UPPER(l_table_name)
462: AND owner =
463: (select table_owner
464: from all_synonyms
465: where synonym_name = UPPER(l_table_name)
466: and owner = l_apps_schema);
467:
468: -- cursor to check that column exists in an Application schema

Line 476: from all_synonyms

472: WHERE column_name = UPPER(l_col_name)
473: AND table_name = UPPER(l_table_name)
474: AND owner =
475: (select table_owner
476: from all_synonyms
477: where synonym_name = UPPER(l_table_name)
478: and owner = l_apps_schema);
479:
480: l_return_csr VARCHAR2(1);