DBA Data[Home] [Help]

APPS.PER_ASP_SHD dependencies on PER_SEC_PROFILE_ASSIGNMENTS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PER_SEC_PROFILE_ASSIGNMENTS_FK') 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_SEC_PROFILE_ASSIGNMENTS_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 = 'PER_SEC_PROFILE_ASSIGNMENTS_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 31: ElsIf (p_constraint_name = 'PER_SEC_PROFILE_ASSIGNMENTS_UK') 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 = 'PER_SEC_PROFILE_ASSIGNMENTS_UK') 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 70: from per_sec_profile_assignments

66: responsibility_application_id,
67: start_date,
68: end_date,
69: object_version_number
70: from per_sec_profile_assignments
71: where sec_profile_assignment_id = p_sec_profile_assignment_id;
72: --
73: l_proc varchar2(72) := g_package||'api_updating';
74: l_fct_ret boolean;

Line 149: from per_sec_profile_assignments

145: responsibility_application_id,
146: start_date,
147: end_date,
148: object_version_number
149: from per_sec_profile_assignments
150: where sec_profile_assignment_id = p_sec_profile_assignment_id
151: for update nowait;
152: --
153: l_proc varchar2(72) := g_package||'lck';

Line 192: hr_utility.set_message_token('TABLE_NAME', 'per_sec_profile_assignments');

188: -- The object is locked therefore we need to supply a meaningful
189: -- error message.
190: --
191: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
192: hr_utility.set_message_token('TABLE_NAME', 'per_sec_profile_assignments');
193: hr_utility.raise_error;
194: End lck;
195: --
196: -- ----------------------------------------------------------------------------