DBA Data[Home] [Help]

APPS.BEN_PCM_INS dependencies on HR_API

Line 250: When hr_api.check_integrity_violated Then

246: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
247: hr_utility.set_location(' Leaving:'||l_proc, 15);
248: --
249: Exception
250: When hr_api.check_integrity_violated Then
251: -- A check constraint has been violated
252: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
253: ben_pcm_shd.constraint_error
254: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 254: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

250: When hr_api.check_integrity_violated Then
251: -- A check constraint has been violated
252: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
253: ben_pcm_shd.constraint_error
254: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
255: When hr_api.unique_integrity_violated Then
256: -- Unique integrity has been violated
257: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
258: ben_pcm_shd.constraint_error

Line 255: When hr_api.unique_integrity_violated Then

251: -- A check constraint has been violated
252: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
253: ben_pcm_shd.constraint_error
254: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
255: When hr_api.unique_integrity_violated Then
256: -- Unique integrity has been violated
257: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
258: ben_pcm_shd.constraint_error
259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

255: When hr_api.unique_integrity_violated Then
256: -- Unique integrity has been violated
257: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
258: ben_pcm_shd.constraint_error
259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
260: When Others Then
261: ben_pcm_shd.g_api_dml := false; -- Unset the api dml status
262: Raise;
263: End dt_insert_dml;

Line 460: when hr_api.cannot_find_prog_unit then

456: );
457: --
458: exception
459: --
460: when hr_api.cannot_find_prog_unit then
461: --
462: hr_api.cannot_find_prog_unit_error
463: (p_module_name => 'ben_per_cm_f'
464: ,p_hook_type => 'AI');

Line 462: hr_api.cannot_find_prog_unit_error

458: exception
459: --
460: when hr_api.cannot_find_prog_unit then
461: --
462: hr_api.cannot_find_prog_unit_error
463: (p_module_name => 'ben_per_cm_f'
464: ,p_hook_type => 'AI');
465: --
466: end;

Line 499: -- another user. This will raise the HR_Api.Object_Locked exception.

495: --
496: -- Post Failure:
497: -- The Lck process can fail for:
498: -- 1) When attempting to lock the row the row could already be locked by
499: -- another user. This will raise the HR_Api.Object_Locked exception.
500: -- 2) When attempting to the lock the parent which doesn't exist.
501: -- For the entity to be locked the parent must exist!
502: --
503: -- Developer Implementation Notes: