DBA Data[Home] [Help]

APPS.FFDICT dependencies on FF_CONTEXTS

Line 1353: -- Check if there any rows in FF_CONTEXTS for this name

1349: dummy varchar2(1);
1350: begin
1351: -- set error tracking information
1352: hr_utility.set_location('ffdict.will_clash_with_context',1);
1353: -- Check if there any rows in FF_CONTEXTS for this name
1354: --
1355: select 'X' into dummy from dual where exists
1356: (select null from ff_contexts where context_name = upper(p_item_name));
1357: --

Line 1356: (select null from ff_contexts where context_name = upper(p_item_name));

1352: hr_utility.set_location('ffdict.will_clash_with_context',1);
1353: -- Check if there any rows in FF_CONTEXTS for this name
1354: --
1355: select 'X' into dummy from dual where exists
1356: (select null from ff_contexts where context_name = upper(p_item_name));
1357: --
1358: -- Exception not raised, so item is a context - return TRUE.
1359: return TRUE;
1360: exception

Line 2491: ff_contexts c

2487: where exists
2488: (
2489: select null from ff_formulas_f a,
2490: ff_fdi_usages_f b,
2491: ff_contexts c
2492: where a.formula_type_id = p_ftype_id
2493: and a.formula_id = b.formula_id
2494: and b.item_name = upper(c.context_name)
2495: and c.context_id = p_context_id