DBA Data[Home] [Help]

APPS.PAY_SIV_SHD dependencies on PAY_SHADOW_INPUT_VALUES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_SHADOW_INPUT_VALUES_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_INPUT_VALUES_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_INPUT_VALUES_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_INPUT_VALUES_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_SHADOW_INPUT_VALUES_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 78: from pay_shadow_input_values

74: exclusion_rule_id,
75: formula_id,
76: input_validation_formula,
77: object_version_number
78: from pay_shadow_input_values
79: where input_value_id = p_input_value_id;
80: --
81: l_proc varchar2(72) := g_package||'api_updating';
82: l_fct_ret boolean;

Line 165: from pay_shadow_input_values

161: exclusion_rule_id,
162: formula_id,
163: input_validation_formula,
164: object_version_number
165: from pay_shadow_input_values
166: where input_value_id = p_input_value_id
167: for update nowait;
168: --
169: l_proc varchar2(72) := g_package||'lck';

Line 211: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_input_values');

207: -- The object is locked therefore we need to supply a meaningful
208: -- error message.
209: --
210: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
211: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_input_values');
212: hr_utility.raise_error;
213: End lck;
214: --
215: -- ----------------------------------------------------------------------------