DBA Data[Home] [Help]

APPS.PAY_TCO_SHD dependencies on PAY_TEMPLATE_CORE_OBJECTS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_TEMPLATE_CORE_OBJECTS_FK1') Then
22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;

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

22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;
26: ElsIf (p_constraint_name = 'PAY_TEMPLATE_CORE_OBJECTS_FK1') Then
27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;

Line 31: ElsIf (p_constraint_name = 'PAY_TEMPLATE_CORE_OBJECTS_PK') Then

27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;
31: ElsIf (p_constraint_name = 'PAY_TEMPLATE_CORE_OBJECTS_PK') Then
32: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
33: hr_utility.set_message_token('PROCEDURE', l_proc);
34: hr_utility.set_message_token('STEP','15');
35: hr_utility.raise_error;

Line 67: from pay_template_core_objects

63: core_object_id,
64: shadow_object_id,
65: effective_date,
66: object_version_number
67: from pay_template_core_objects
68: where template_core_object_id = p_template_core_object_id;
69: --
70: l_proc varchar2(72) := g_package||'api_updating';
71: l_fct_ret boolean;

Line 143: from pay_template_core_objects

139: core_object_id,
140: shadow_object_id,
141: effective_date,
142: object_version_number
143: from pay_template_core_objects
144: where template_core_object_id = p_template_core_object_id
145: for update nowait;
146: --
147: l_proc varchar2(72) := g_package||'lck';

Line 186: hr_utility.set_message_token('TABLE_NAME', 'pay_template_core_objects');

182: -- The object is locked therefore we need to supply a meaningful
183: -- error message.
184: --
185: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
186: hr_utility.set_message_token('TABLE_NAME', 'pay_template_core_objects');
187: hr_utility.raise_error;
188: End lck;
189: --
190: -- ----------------------------------------------------------------------------