DBA Data[Home] [Help]

APPS.HR_WNP_SHD dependencies on HR_WINDOW_PROPERTIES_B

Line 21: If (p_constraint_name = 'HR_WINDOW_PROPERTIES_B_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'HR_WINDOW_PROPERTIES_B_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 26: ElsIf (p_constraint_name = 'HR_WINDOW_PROPERTIES_B_UK') Then

22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;
26: ElsIf (p_constraint_name = 'HR_WINDOW_PROPERTIES_B_UK') Then
27: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
28: fnd_message.set_token('PROCEDURE', l_proc);
29: fnd_message.set_token('STEP','10');
30: fnd_message.raise_error;

Line 101: from hr_window_properties_b

97: ,information27
98: ,information28
99: ,information29
100: ,information30
101: from hr_window_properties_b
102: where window_property_id = p_window_property_id;
103: --
104: l_fct_ret boolean;
105: --

Line 196: from hr_window_properties_b

192: ,information27
193: ,information28
194: ,information29
195: ,information30
196: from hr_window_properties_b
197: where window_property_id = p_window_property_id
198: for update nowait;
199: --
200: l_proc varchar2(72) := g_package||'lck';

Line 235: fnd_message.set_token('TABLE_NAME', 'hr_window_properties_b');

231: -- The object is locked therefore we need to supply a meaningful
232: -- error message.
233: --
234: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
235: fnd_message.set_token('TABLE_NAME', 'hr_window_properties_b');
236: fnd_message.raise_error;
237: End lck;
238: --
239: -- ----------------------------------------------------------------------------