DBA Data[Home] [Help]

APPS.PER_CEO_SHD dependencies on HR_UTILITY

Line 238: hr_utility.set_location('Entering:'||l_proc, 5);

234: --
235: l_proc varchar2(72) := g_package||'lck';
236: --
237: Begin
238: hr_utility.set_location('Entering:'||l_proc, 5);
239: --
240: hr_api.mandatory_arg_error
241: (p_api_name => l_proc
242: ,p_argument => 'COMP_ELEMENT_OUTCOME_ID'

Line 245: hr_utility.set_location(l_proc,6);

241: (p_api_name => l_proc
242: ,p_argument => 'COMP_ELEMENT_OUTCOME_ID'
243: ,p_argument_value => p_comp_element_outcome_id
244: );
245: hr_utility.set_location(l_proc,6);
246: hr_api.mandatory_arg_error
247: (p_api_name => l_proc
248: ,p_argument => 'OBJECT_VERSION_NUMBER'
249: ,p_argument_value => p_object_version_number

Line 252: hr_utility.set_location(l_proc,7);

248: ,p_argument => 'OBJECT_VERSION_NUMBER'
249: ,p_argument_value => p_object_version_number
250: );
251: --
252: hr_utility.set_location(l_proc,7);
253: Open C_Sel1;
254: Fetch C_Sel1 Into per_ceo_shd.g_old_rec;
255: If C_Sel1%notfound then
256: Close C_Sel1;

Line 257: hr_utility.set_location(l_proc,8);

253: Open C_Sel1;
254: Fetch C_Sel1 Into per_ceo_shd.g_old_rec;
255: If C_Sel1%notfound then
256: Close C_Sel1;
257: hr_utility.set_location(l_proc,8);
258: --
259: -- The primary key is invalid therefore we must error
260: --
261: fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');

Line 267: hr_utility.set_location(l_proc,9);

263: End If;
264: Close C_Sel1;
265: If (p_object_version_number
266: <> per_ceo_shd.g_old_rec.object_version_number) Then
267: hr_utility.set_location(l_proc,9);
268: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
269: fnd_message.raise_error;
270: End If;
271: --

Line 272: hr_utility.set_location(' Leaving:'||l_proc, 10);

268: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
269: fnd_message.raise_error;
270: End If;
271: --
272: hr_utility.set_location(' Leaving:'||l_proc, 10);
273: --
274: -- We need to trap the ORA LOCK exception
275: --
276: Exception