DBA Data[Home] [Help]

APPS.FND_PROGRAM dependencies on FND_DESCR_FLEX_COLUMN_USAGES

Line 457: FROM fnd_descr_flex_column_usages cu

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

Line 1722: from fnd_descr_flex_column_usages u

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

Line 2074: from fnd_descr_flex_column_usages

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