DBA Data[Home] [Help]

APPS.PER_STL_INS dependencies on PER_RI_SETUP_TASKS_TL

Line 65: -- Insert the row into: per_ri_setup_tasks_tl

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

Line 67: insert into per_ri_setup_tasks_tl

63: --
64: --
65: -- Insert the row into: per_ri_setup_tasks_tl
66: --
67: insert into per_ri_setup_tasks_tl
68: (setup_task_code
69: ,language
70: ,source_lang
71: ,setup_task_name

Line 214: (p_module_name => 'PER_RI_SETUP_TASKS_TL'

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

Line 329: from per_ri_setup_tasks_tl stl

325: select l.language_code
326: from fnd_languages l
327: where l.installed_flag in ('I','B')
328: and not exists (select null
329: from per_ri_setup_tasks_tl stl
330: where stl.setup_task_code = p_setup_task_code
331: and stl.language = l.language_code);
332: --
333: l_proc varchar2(72) := g_package || 'ins_tl';