DBA Data[Home] [Help]

APPS.PER_STL_DEL dependencies on PER_RI_SETUP_TASKS_TL

Line 62: -- Delete the per_ri_setup_tasks_tl row.

58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: --
61: --
62: -- Delete the per_ri_setup_tasks_tl row.
63: --
64: delete from per_ri_setup_tasks_tl
65: where setup_task_code = p_rec.setup_task_code
66: and language = p_rec.language;

Line 64: delete from per_ri_setup_tasks_tl

60: --
61: --
62: -- Delete the per_ri_setup_tasks_tl row.
63: --
64: delete from per_ri_setup_tasks_tl
65: where setup_task_code = p_rec.setup_task_code
66: and language = p_rec.language;
67: --
68: --

Line 178: (p_module_name => 'PER_RI_SETUP_TASKS_TL'

174: --
175: when hr_api.cannot_find_prog_unit then
176: --
177: hr_api.cannot_find_prog_unit_error
178: (p_module_name => 'PER_RI_SETUP_TASKS_TL'
179: ,p_hook_type => 'AD');
180: --
181: end;
182: --

Line 271: from per_ri_setup_tasks_tl stl

267: -- Cursor to obtain all the translation rows.
268: --
269: cursor csr_del_langs is
270: select stl.language
271: from per_ri_setup_tasks_tl stl
272: where stl.setup_task_code = p_setup_task_code;
273: --
274: l_proc varchar2(72) := g_package||'del_tl';
275: --