DBA Data[Home] [Help]

APPS.PAY_PAP_SHD dependencies on PAY_ACCRUAL_PLANS

Line 36: If (p_constraint_name = 'PAY_ACCRUAL_PLANS_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PAY_ACCRUAL_PLANS_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;

Line 41: ElsIf (p_constraint_name = 'PAY_ACCRUAL_PLANS_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','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'PAY_ACCRUAL_PLANS_PK') 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 131: from pay_accrual_plans

127: information28,
128: information29,
129: information30
130:
131: from pay_accrual_plans
132: where accrual_plan_id = p_accrual_plan_id;
133: --
134: l_proc varchar2(72) := g_package||'api_updating';
135: l_fct_ret boolean;

Line 257: from pay_accrual_plans

253: information28,
254: information29,
255: information30
256:
257: from pay_accrual_plans
258: where accrual_plan_id = p_accrual_plan_id
259: for update nowait;
260: --
261: l_proc varchar2(72) := g_package||'lck';

Line 298: hr_utility.set_message_token('TABLE_NAME', 'pay_accrual_plans');

294: -- The object is locked therefore we need to supply a meaningful
295: -- error message.
296: --
297: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
298: hr_utility.set_message_token('TABLE_NAME', 'pay_accrual_plans');
299: hr_utility.raise_error;
300: End lck;
301: --
302: -- ----------------------------------------------------------------------------