DBA Data[Home] [Help]

APPS.PAY_SET_SHD dependencies on PAY_SHADOW_ELEMENT_TYPES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_SHADOW_ELEMENT_TYPES_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_SHADOW_ELEMENT_TYPES_FK2') 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_SHADOW_ELEMENT_TYPES_FK2') 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_SHADOW_ELEMENT_TYPES_FK3') 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_SHADOW_ELEMENT_TYPES_FK3') 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 36: ElsIf (p_constraint_name = 'PAY_SHADOW_ELEMENT_TYPES_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;
36: ElsIf (p_constraint_name = 'PAY_SHADOW_ELEMENT_TYPES_PK') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','20');
40: hr_utility.raise_error;

Line 148: from pay_shadow_element_types

144: proration_formula,
145: recalc_event_group,
146: once_each_period_flag,
147: object_version_number
148: from pay_shadow_element_types
149: where element_type_id = p_element_type_id;
150: --
151: l_proc varchar2(72) := g_package||'api_updating';
152: l_fct_ret boolean;

Line 300: from pay_shadow_element_types

296: proration_formula,
297: recalc_event_group,
298: once_each_period_flag,
299: object_version_number
300: from pay_shadow_element_types
301: where element_type_id = p_element_type_id
302: for update nowait;
303: --
304: l_proc varchar2(72) := g_package||'lck';

Line 343: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_element_types');

339: -- The object is locked therefore we need to supply a meaningful
340: -- error message.
341: --
342: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
343: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_element_types');
344: hr_utility.raise_error;
345: End lck;
346: --
347: -- ----------------------------------------------------------------------------