DBA Data[Home] [Help]

APPS.HR_FTT_INS dependencies on HR_FORM_TAB_PAGES_TL

Line 65: -- Insert the row into: hr_form_tab_pages_tl

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

Line 67: insert into hr_form_tab_pages_tl

63: --
64: --
65: -- Insert the row into: hr_form_tab_pages_tl
66: --
67: insert into hr_form_tab_pages_tl
68: (form_tab_page_id
69: ,language
70: ,source_lang
71: ,user_tab_page_name

Line 218: (p_module_name => 'HR_FORM_TAB_PAGES_TL'

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

Line 327: from hr_form_tab_pages_tl ftt

323: select l.language_code
324: from fnd_languages l
325: where l.installed_flag in ('I','B')
326: and not exists (select null
327: from hr_form_tab_pages_tl ftt
328: where ftt.form_tab_page_id = p_form_tab_page_id
329: and ftt.language = l.language_code);
330: --
331: l_proc varchar2(72) := g_package || 'ins_tl';