DBA Data[Home] [Help]

APPS.HR_WPT_INS dependencies on HR_WINDOW_PROPERTIES_TL

Line 65: -- Insert the row into: hr_window_properties_tl

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

Line 75: p_entity_name => 'HR_WINDOW_PROPERTIES_TL',

71: --
72:
73: BEGIN
74: PER_RIC_PKG.chk_integrity (
75: p_entity_name => 'HR_WINDOW_PROPERTIES_TL',
76: p_ref_entity => 'HR_WINDOW_PROPERTIES_B',
77: p_ref_column_name => 'WINDOW_PROPERTY_ID',
78: p_ref_col_value_number => p_rec.window_property_id ,
79: p_ref_col_value_varchar => NULL,

Line 87: insert into hr_window_properties_tl

83: END;
84: --
85: -- Code Ends Here.
86: --
87: insert into hr_window_properties_tl
88: (window_property_id
89: ,language
90: ,source_lang
91: ,title

Line 234: (p_module_name => 'HR_WINDOW_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_WINDOW_PROPERTIES_TL'
235: ,p_hook_type => 'AI');
236: --
237: end;
238: --

Line 340: from hr_window_properties_tl wpt

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_window_properties_tl wpt
341: where wpt.window_property_id = p_window_property_id
342: and wpt.language = l.language_code);
343: --
344: l_proc varchar2(72) := g_package || 'ins_tl';