DBA Data[Home] [Help]

APPS.FF_FFT_UPD dependencies on FF_FORMULAS_F_TL

Line 66: -- Update the ff_formulas_f_tl Row

62: --
63: --
64: --
65: --
66: -- Update the ff_formulas_f_tl Row
67: --
68: update ff_formulas_f_tl
69: set
70: formula_id = p_rec.formula_id

Line 68: update ff_formulas_f_tl

64: --
65: --
66: -- Update the ff_formulas_f_tl Row
67: --
68: update ff_formulas_f_tl
69: set
70: formula_id = p_rec.formula_id
71: ,language = p_rec.language
72: ,source_lang = p_rec.source_lang

Line 213: (p_module_name => 'FF_FORMULAS_F_TL'

209: --
210: when hr_api.cannot_find_prog_unit then
211: --
212: hr_api.cannot_find_prog_unit_error
213: (p_module_name => 'FF_FORMULAS_F_TL'
214: ,p_hook_type => 'AU');
215: --
216: end;
217: --

Line 397: from ff_formulas_f_tl fft

393: -- source_lang match the specified language.
394: --
395: cursor csr_upd_langs is
396: select fft.language
397: from ff_formulas_f_tl fft
398: where fft.formula_id = p_formula_id
399: and p_language_code in (fft.language
400: ,fft.source_lang);
401: --