DBA Data[Home] [Help]

APPS.HR_OTT_UPD dependencies on HR_KI_OPTION_TYPES_TL

Line 66: -- Update the hr_ki_option_types_tl Row

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

Line 68: update hr_ki_option_types_tl

64: --
65: --
66: -- Update the hr_ki_option_types_tl Row
67: --
68: update hr_ki_option_types_tl
69: set
70: option_type_id = p_rec.option_type_id
71: ,option_name = p_rec.option_name
72: ,language = p_rec.language

Line 209: (p_module_name => 'HR_KI_OPTION_TYPES_TL'

205: --
206: when hr_api.cannot_find_prog_unit then
207: --
208: hr_api.cannot_find_prog_unit_error
209: (p_module_name => 'HR_KI_OPTION_TYPES_TL'
210: ,p_hook_type => 'AU');
211: --
212:
213:

Line 391: from hr_ki_option_types_tl ott

387: -- source_lang match the specified language.
388: --
389: cursor csr_upd_langs is
390: select ott.language
391: from hr_ki_option_types_tl ott
392: where
393: ott.option_type_id = p_option_type_id
394: and p_language_code in (ott.language
395: ,ott.source_lang);