DBA Data[Home] [Help]

APPS.PER_SST_INS dependencies on PER_RI_SETUP_SUB_TASKS_TL

Line 65: -- Insert the row into: per_ri_setup_sub_tasks_tl

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

Line 67: insert into per_ri_setup_sub_tasks_tl

63: --
64: --
65: -- Insert the row into: per_ri_setup_sub_tasks_tl
66: --
67: insert into per_ri_setup_sub_tasks_tl
68: (setup_sub_task_code
69: ,language
70: ,source_lang
71: ,setup_sub_task_name

Line 213: (p_module_name => 'PER_RI_SETUP_SUB_TASKS_TL'

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

Line 328: from per_ri_setup_sub_tasks_tl sst

324: select l.language_code
325: from fnd_languages l
326: where l.installed_flag in ('I','B')
327: and not exists (select null
328: from per_ri_setup_sub_tasks_tl sst
329: where sst.setup_sub_task_code = p_setup_sub_task_code
330: and sst.language = l.language_code);
331: --
332: l_proc varchar2(72) := g_package || 'ins_tl';