DBA Data[Home] [Help]

APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR dependencies on USER_SYNONYMS

Line 391: from user_synonyms syn

387: and c.column_name not like 'GLOBAL_ATTRIBUTE%'
388: and c.column_name not in ('APPLICATION_ID')
389: */
390: select col.column_name
391: from user_synonyms syn
392: , dba_tab_columns col
393: where syn.synonym_name = 'HZ_PARTIES'
394: and col.owner = syn.table_owner
395: and col.table_name = syn.table_name

Line 398: from user_synonyms syn

394: and col.owner = syn.table_owner
395: and col.table_name = syn.table_name
396: and exists (
397: select null
398: from user_synonyms syn
399: , dba_tab_columns col2
400: where col2.owner = syn.table_owner
401: and col2.table_name = syn.table_name
402: and col.column_name = col2.column_name