DBA Data[Home] [Help]

APPS.PAY_NCR_SHD dependencies on PAY_NET_CALCULATION_RULES

Line 41: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_FK1') 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','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_FK1') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_FK2') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_FK2') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_PK') Then

47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'PAY_NET_CALCULATION_RULES_PK') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 87: from pay_net_calculation_rules

83: input_value_id,
84: add_or_subtract,
85: date_input_value_id,
86: object_version_number
87: from pay_net_calculation_rules
88: where net_calculation_rule_id = p_net_calculation_rule_id;
89: --
90: l_proc varchar2(72) := g_package||'api_updating';
91: l_fct_ret boolean;

Line 163: from pay_net_calculation_rules

159: input_value_id,
160: add_or_subtract,
161: date_input_value_id,
162: object_version_number
163: from pay_net_calculation_rules
164: where net_calculation_rule_id = p_net_calculation_rule_id
165: for update nowait;
166: --
167: l_proc varchar2(72) := g_package||'lck';

Line 204: hr_utility.set_message_token('TABLE_NAME', 'pay_net_calculation_rules');

200: -- The object is locked therefore we need to supply a meaningful
201: -- error message.
202: --
203: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
204: hr_utility.set_message_token('TABLE_NAME', 'pay_net_calculation_rules');
205: hr_utility.raise_error;
206: End lck;
207: --
208: -- ----------------------------------------------------------------------------