DBA Data[Home] [Help]

APPS.FND_PROGRAM dependencies on FND_DESCR_FLEX_COLUMN_USAGES

Line 454: FROM fnd_descr_flex_column_usages cu

450: AND t.application_id = 0 -- hardwired
451: AND c.application_id = t.application_id
452: AND c.flexfield_usage_code = 'D'
453: AND NOT EXISTS (SELECT NULL
454: FROM fnd_descr_flex_column_usages cu
455: WHERE cu.application_id = application_id_i
456: AND cu.descriptive_flexfield_name
457: = descriptive_flexfield_name_in
458: AND cu.application_column_name = c.column_name);

Line 1719: from fnd_descr_flex_column_usages u

1715: a.application_column_name) in
1716: (select u.application_id,
1717: u.descriptive_flexfield_name,
1718: u.application_column_name
1719: from fnd_descr_flex_column_usages u
1720: where u.application_id = program_appl_id
1721: and u.descriptive_flexfield_name = desc_flex_name
1722: and u.descriptive_flex_context_code = 'Global Data Elements'
1723: and u.end_user_column_name = parameter);

Line 2071: from fnd_descr_flex_column_usages

2067:
2068:
2069: select 'y'
2070: into dummy
2071: from fnd_descr_flex_column_usages
2072: where application_id = program_appl_id
2073: and descriptive_flexfield_name = desc_flex_name
2074: and descriptive_flex_context_code = 'Global Data Elements'
2075: and end_user_column_name = parameter;