DBA Data[Home] [Help]

APPS.PAY_SBC_SHD dependencies on PAY_SHADOW_BALANCE_CLASSI

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_SHADOW_BALANCE_CLASSI_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_BALANCE_CLASSI_PK') 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_BALANCE_CLASSI_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;

Line 61: from pay_shadow_balance_classi

57: element_classification,
58: scale,
59: object_version_number
60: ,exclusion_rule_id
61: from pay_shadow_balance_classi
62: where balance_classification_id = p_balance_classification_id;
63: --
64: l_proc varchar2(72) := g_package||'api_updating';
65: l_fct_ret boolean;

Line 136: from pay_shadow_balance_classi

132: element_classification,
133: scale,
134: object_version_number
135: ,exclusion_rule_id
136: from pay_shadow_balance_classi
137: where balance_classification_id = p_balance_classification_id
138: for update nowait;
139: --
140: l_proc varchar2(72) := g_package||'lck';

Line 182: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_balance_classi');

178: -- The object is locked therefore we need to supply a meaningful
179: -- error message.
180: --
181: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
182: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_balance_classi');
183: hr_utility.raise_error;
184: End lck;
185: --
186: -- ----------------------------------------------------------------------------