DBA Data[Home] [Help]

APPS.HR_TMT_UPD dependencies on HR_FORM_TEMPLATES_TL

Line 66: -- Update the hr_form_templates_tl Row

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

Line 68: update hr_form_templates_tl

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

Line 213: (p_module_name => 'HR_FORM_TEMPLATES_TL'

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

Line 391: from hr_form_templates_tl tmt

387: -- source_lang match the specified language.
388: --
389: cursor csr_upd_langs is
390: select tmt.language
391: from hr_form_templates_tl tmt
392: where tmt.form_template_id = p_form_template_id
393: and p_language_code in (tmt.language
394: ,tmt.source_lang);
395: --