DBA Data[Home] [Help]

APPS.HR_IPT_UPD dependencies on HR_ITEM_PROPERTIES_TL

Line 66: -- Update the hr_item_properties_tl Row

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

Line 68: update hr_item_properties_tl

64: --
65: --
66: -- Update the hr_item_properties_tl Row
67: --
68: update hr_item_properties_tl
69: set
70: item_property_id = p_rec.item_property_id
71: ,language = p_rec.language
72: ,source_lang = p_rec.source_lang

Line 228: (p_module_name => 'HR_ITEM_PROPERTIES_TL'

224: --
225: when hr_api.cannot_find_prog_unit then
226: --
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'HR_ITEM_PROPERTIES_TL'
229: ,p_hook_type => 'AU');
230: --
231: end;
232: --

Line 427: from hr_item_properties_tl ipt

423: -- source_lang match the specified language.
424: --
425: cursor csr_upd_langs is
426: select ipt.language
427: from hr_item_properties_tl ipt
428: where ipt.item_property_id = p_item_property_id
429: and p_language_code in (ipt.language
430: ,ipt.source_lang);
431: --