DBA Data[Home] [Help]

APPS.HR_TPT_INS dependencies on HR_TAB_PAGE_PROPERTIES_TL

Line 65: -- Insert the row into: hr_tab_page_properties_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: hr_tab_page_properties_tl
66: --
67:
68: --
69: -- Added the following code as a part of Zero Downtime Patching Project.

Line 74: p_entity_name => 'HR_TAB_PAGE_PROPERTIES_TL',

70: -- Code Starts Here.
71: --
72: BEGIN
73: PER_RIC_PKG.chk_integrity (
74: p_entity_name => 'HR_TAB_PAGE_PROPERTIES_TL',
75: p_ref_entity => 'HR_TAB_PAGE_PROPERTIES_B',
76: p_ref_column_name => 'TAB_PAGE_PROPERTY_ID',
77: p_ref_col_value_number => P_REC.TAB_PAGE_PROPERTY_ID,
78: p_ref_col_value_varchar => NULL,

Line 87: insert into hr_tab_page_properties_tl

83: --
84: -- Code Ends Here.
85: --
86:
87: insert into hr_tab_page_properties_tl
88: (tab_page_property_id
89: ,language
90: ,source_lang
91: ,label

Line 234: (p_module_name => 'HR_TAB_PAGE_PROPERTIES_TL'

230: --
231: when hr_api.cannot_find_prog_unit then
232: --
233: hr_api.cannot_find_prog_unit_error
234: (p_module_name => 'HR_TAB_PAGE_PROPERTIES_TL'
235: ,p_hook_type => 'AI');
236: --
237: end;
238: --

Line 340: from hr_tab_page_properties_tl tpt

336: select l.language_code
337: from fnd_languages l
338: where l.installed_flag in ('I','B')
339: and not exists (select null
340: from hr_tab_page_properties_tl tpt
341: where tpt.tab_page_property_id = p_tab_page_property_id
342: and tpt.language = l.language_code);
343: --
344: l_proc varchar2(72) := g_package || 'ins_tl';