DBA Data[Home] [Help]

APPS.AD_ZD_SEED dependencies on DBA_SYNONYMS

Line 85: from dba_synonyms s

81: -- Get EV Name
82: begin
83: select s.table_owner, s.table_name
84: into l_owner, l_view_name
85: from dba_synonyms s
86: where owner = ad_zd.apps_schema
87: and synonym_name = x_synonym_name;
88: exception when no_data_found then
89: error(x_module, 'Synonym does not exist: '||nvl(x_synonym_name,''));

Line 1326: from dba_synonyms s

1322: -- ignore missing synonym (table must have been dropped)
1323: begin
1324: select s.table_owner, s.table_name
1325: into l_table_owner, l_table_name
1326: from dba_synonyms s
1327: where s.owner = ad_zd.apps_schema
1328: and s.synonym_name = x_table_name;
1329: exception when no_data_found then
1330: log(c_module, 'STATEMENT', 'Ignored: Synonym does not exist: '