DBA Data[Home] [Help]

APPS.HR_IPT_INS dependencies on HR_ITEM_PROPERTIES_TL

Line 65: -- Insert the row into: hr_item_properties_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: hr_item_properties_tl
66: --
67: insert into hr_item_properties_tl
68: (item_property_id
69: ,language

Line 67: insert into hr_item_properties_tl

63: --
64: --
65: -- Insert the row into: hr_item_properties_tl
66: --
67: insert into hr_item_properties_tl
68: (item_property_id
69: ,language
70: ,source_lang
71: ,default_value

Line 230: (p_module_name => 'HR_ITEM_PROPERTIES_TL'

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

Line 349: from hr_item_properties_tl ipt

345: select l.language_code
346: from fnd_languages l
347: where l.installed_flag in ('I','B')
348: and not exists (select null
349: from hr_item_properties_tl ipt
350: where ipt.item_property_id = p_item_property_id
351: and ipt.language = l.language_code);
352: --
353: l_proc varchar2(72) := g_package || 'ins_tl';