DBA Data[Home] [Help]

APPS.PER_FORMULA_FUNCTIONS dependencies on FF_COMPILED_INFO_F

Line 80: ,ff_compiled_info_f ffci

76: ff.business_group_id,
77: ff.effective_start_date,
78: ff.effective_end_date
79: from ff_formulas_f ff
80: ,ff_compiled_info_f ffci
81: where ff.formula_id = ffci.formula_id
82: and ff.effective_start_date = ffci.effective_start_date
83: and ff.effective_end_date = ffci.effective_end_date
84: and ff.formula_name = p_formula_name;

Line 125: ,ff_compiled_info_f ffci

121: ff.business_group_id,
122: ff.effective_start_date,
123: ff.effective_end_date
124: from ff_formulas_f ff
125: ,ff_compiled_info_f ffci
126: where ff.formula_id = ffci.formula_id
127: and ff.effective_start_date = ffci.effective_start_date
128: and ff.effective_end_date = ffci.effective_end_date
129: and ff.formula_id = p_formula_id;

Line 540: -- and ff_compiled_info_f.

536:
537: -- Cache this formula. The purpose of this is to fetch the formula name
538: -- (if the formula does not exist or is not compiled it is listed in the
539: -- error message). It is cached to prevent frequent hits on ff_formulas_f
540: -- and ff_compiled_info_f.
541: l_formula_name := get_formula (
542: p_formula_id => p_formula_id,
543: p_calculation_date => p_calculation_date
544: );