DBA Data[Home] [Help]

APPS.PER_JBR_SHD dependencies on PER_JOB_REQUIREMENTS

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_JOB_REQUIREMENTS_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 = 'PER_JOB_REQUIREMENTS_FK2') 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 = 'PER_JOB_REQUIREMENTS_FK2') 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 46: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_FK50') 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;
46: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_FK50') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_FK51') Then

47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_FK51') Then
52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;

Line 56: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_PK') Then

52: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
53: hr_utility.set_message_token('PROCEDURE', l_proc);
54: hr_utility.set_message_token('STEP','20');
55: hr_utility.raise_error;
56: ElsIf (p_constraint_name = 'PER_JOB_REQUIREMENTS_PK') Then
57: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
58: hr_utility.set_message_token('PROCEDURE', l_proc);
59: hr_utility.set_message_token('STEP','25');
60: hr_utility.raise_error;

Line 125: from per_job_requirements

121: attribute18,
122: attribute19,
123: attribute20,
124: object_version_number
125: from per_job_requirements
126: where job_requirement_id = p_job_requirement_id;
127: --
128: l_proc varchar2(72) := g_package||'api_updating';
129: l_fct_ret boolean;

Line 230: from per_job_requirements

226: attribute18,
227: attribute19,
228: attribute20,
229: object_version_number
230: from per_job_requirements
231: where job_requirement_id = p_job_requirement_id
232: for update nowait;
233: --
234: l_proc varchar2(72) := g_package||'lck';

Line 273: hr_utility.set_message_token('TABLE_NAME', 'per_job_requirements');

269: -- The object is locked therefore we need to supply a meaningful
270: -- error message.
271: --
272: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
273: hr_utility.set_message_token('TABLE_NAME', 'per_job_requirements');
274: hr_utility.raise_error;
275: End lck;
276: --
277: -- ---------------------------------------------------------------------------