DBA Data[Home] [Help]

APPS.ETRM_RPT dependencies on FND_COLUMNS

Line 413: from applsys.fnd_columns c

409: cursor cur_pk_columns(n_tabid in number
410: , n_appid in number
411: , n_keyid in number) is
412: SELECT c.column_name
413: from applsys.fnd_columns c
414: , applsys.fnd_primary_key_columns k
415: where k.table_id = c.table_id
416: and k.application_id = c.application_id
417: and k.column_id = c.column_id

Line 455: from applsys.fnd_columns c

451: cursor cur_fk_columns(n_tabid in number
452: , n_appid in number
453: , n_keyid in number) is
454: SELECT c.column_name
455: from applsys.fnd_columns c
456: , applsys.fnd_foreign_key_columns k
457: where k.table_id = c.table_id
458: and k.application_id = c.application_id
459: and k.column_id = c.column_id