DBA Data[Home] [Help]

APPS.PAY_SFR_SHD dependencies on PAY_SHADOW_FORMULA_RULES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_SHADOW_FORMULA_RULES_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_FORMULA_RULES_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_FORMULA_RULES_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_FORMULA_RULES_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_FORMULA_RULES_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_FORMULA_RULES_FK4') 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_FORMULA_RULES_FK4') 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 75: from pay_shadow_formula_rules

71: input_value_id,
72: exclusion_rule_id,
73: object_version_number,
74: element_name
75: from pay_shadow_formula_rules
76: where formula_result_rule_id = p_formula_result_rule_id;
77: --
78: l_proc varchar2(72) := g_package||'api_updating';
79: l_fct_ret boolean;

Line 154: from pay_shadow_formula_rules

150: input_value_id,
151: exclusion_rule_id,
152: object_version_number,
153: element_name
154: from pay_shadow_formula_rules
155: where formula_result_rule_id = p_formula_result_rule_id
156: for update nowait;
157: --
158: l_proc varchar2(72) := g_package||'lck';

Line 197: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_formula_rules');

193: -- The object is locked therefore we need to supply a meaningful
194: -- error message.
195: --
196: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
197: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_formula_rules');
198: hr_utility.raise_error;
199: End lck;
200: --
201: -- ----------------------------------------------------------------------------