DBA Data[Home] [Help]

APPS.HR_HTL_DEL dependencies on HR_KI_HIERARCHIES_TL

Line 62: -- Delete the hr_ki_hierarchies_tl row.

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

Line 64: delete from hr_ki_hierarchies_tl

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

Line 183: (p_module_name => 'HR_KI_HIERARCHIES_TL'

179: --
180: when hr_api.cannot_find_prog_unit then
181: --
182: hr_api.cannot_find_prog_unit_error
183: (p_module_name => 'HR_KI_HIERARCHIES_TL'
184: ,p_hook_type => 'AD');
185: --
186: end;
187: --

Line 277: from hr_ki_hierarchies_tl htl

273: -- Cursor to obtain all the translation rows.
274: --
275: cursor csr_del_langs is
276: select htl.language
277: from hr_ki_hierarchies_tl htl
278: where
279: htl.hierarchy_id = p_hierarchy_id;
280: --
281: l_proc varchar2(72) := g_package||'del_tl';