DBA Data[Home] [Help]

APPS.HZ_MIXNM_DYNAMIC_PKG_GENERATOR dependencies on DBA_TAB_COLUMNS

Line 392: , dba_tab_columns col

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
396: and exists (

Line 399: , dba_tab_columns col2

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
403: and syn.synonym_name = 'HZ_' ||upper (p_entity_name) || '_PROFILES')