DBA Data[Home] [Help]

APPS.PER_CAG_SHD dependencies on PER_COLLECTIVE_AGREEMENTS

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

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

Line 26: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_UK1') 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 = 'PER_COLLECTIVE_AGREEMENTS_UK1') Then
27: hr_utility.set_message(800, 'PER_52835_CAG_INV_CAG_NAME');
28: hr_utility.raise_error;
29: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK1') Then
30: hr_utility.set_message(800, 'PER_52846_CAG_INV_EMP_ORG');

Line 29: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK1') Then

25: hr_utility.raise_error;
26: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_UK1') Then
27: hr_utility.set_message(800, 'PER_52835_CAG_INV_CAG_NAME');
28: hr_utility.raise_error;
29: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK1') Then
30: hr_utility.set_message(800, 'PER_52846_CAG_INV_EMP_ORG');
31: hr_utility.raise_error;
32: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK2') Then
33: hr_utility.set_message(800, 'PER_52847_CAG_INV_BARG_ORG');

Line 32: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK2') Then

28: hr_utility.raise_error;
29: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK1') Then
30: hr_utility.set_message(800, 'PER_52846_CAG_INV_EMP_ORG');
31: hr_utility.raise_error;
32: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK2') Then
33: hr_utility.set_message(800, 'PER_52847_CAG_INV_BARG_ORG');
34: hr_utility.raise_error;
35: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK3') Then
36: hr_utility.set_message(800, 'PER_52848_CAG_INV_BG');

Line 35: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK3') Then

31: hr_utility.raise_error;
32: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK2') Then
33: hr_utility.set_message(800, 'PER_52847_CAG_INV_BARG_ORG');
34: hr_utility.raise_error;
35: ElsIf (p_constraint_name = 'PER_COLLECTIVE_AGREEMENTS_FK3') Then
36: hr_utility.set_message(800, 'PER_52848_CAG_INV_BG');
37: hr_utility.raise_error;
38: Else
39: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');

Line 120: from per_collective_agreements

116: attribute17,
117: attribute18,
118: attribute19,
119: attribute20
120: from per_collective_agreements
121: where collective_agreement_id = p_collective_agreement_id;
122: /* select
123: collective_agreement_id,
124: business_group_id,

Line 309: from per_collective_agreements

305: attribute17,
306: attribute18,
307: attribute19,
308: attribute20
309: from per_collective_agreements
310: where collective_agreement_id = p_collective_agreement_id
311: for update nowait;
312: --
313: l_proc varchar2(72) := g_package||'lck';

Line 361: hr_utility.set_message_token('TABLE_NAME', 'per_collective_agreements');

357: -- The object is locked therefore we need to supply a meaningful
358: -- error message.
359: --
360: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
361: hr_utility.set_message_token('TABLE_NAME', 'per_collective_agreements');
362: hr_utility.raise_error;
363: End lck;
364: --
365: -- ----------------------------------------------------------------------------