DBA Data[Home] [Help]

APPS.HR_HTL_UPD dependencies on HR_KI_HIERARCHIES_TL

Line 66: -- Update the hr_ki_hierarchies_tl Row

62: --
63: --
64: --
65: --
66: -- Update the hr_ki_hierarchies_tl Row
67: --
68: update hr_ki_hierarchies_tl
69: set
70: hierarchy_id = p_rec.hierarchy_id

Line 68: update hr_ki_hierarchies_tl

64: --
65: --
66: -- Update the hr_ki_hierarchies_tl Row
67: --
68: update hr_ki_hierarchies_tl
69: set
70: hierarchy_id = p_rec.hierarchy_id
71: ,name = p_rec.name
72: ,description = p_rec.description

Line 213: (p_module_name => 'HR_KI_HIERARCHIES_TL'

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

Line 397: from hr_ki_hierarchies_tl htl

393: -- source_lang match the specified language.
394: --
395: cursor csr_upd_langs is
396: select htl.language
397: from hr_ki_hierarchies_tl htl
398: where
399: htl.hierarchy_id = p_hierarchy_id
400: and p_language_code in (htl.language
401: ,htl.source_lang);