DBA Data[Home] [Help]

APPS.FF_FFT_INS dependencies on FF_FORMULAS_F_TL

Line 65: -- Insert the row into: ff_formulas_f_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: ff_formulas_f_tl
66: --
67: insert into ff_formulas_f_tl
68: (formula_id
69: ,language

Line 67: insert into ff_formulas_f_tl

63: --
64: --
65: -- Insert the row into: ff_formulas_f_tl
66: --
67: insert into ff_formulas_f_tl
68: (formula_id
69: ,language
70: ,source_lang
71: ,formula_name

Line 218: (p_module_name => 'FF_FORMULAS_F_TL'

214: --
215: when hr_api.cannot_find_prog_unit then
216: --
217: hr_api.cannot_find_prog_unit_error
218: (p_module_name => 'FF_FORMULAS_F_TL'
219: ,p_hook_type => 'AI');
220: --
221: end;
222: --

Line 333: from ff_formulas_f_tl fft

329: select l.language_code
330: from fnd_languages l
331: where l.installed_flag in ('I','B')
332: and not exists (select null
333: from ff_formulas_f_tl fft
334: where fft.formula_id = p_formula_id
335: and fft.language = l.language_code);
336: --
337: l_proc varchar2(72) := g_package || 'ins_tl';