DBA Data[Home] [Help]

APPS.BEN_EJP_INS dependencies on HR_API

Line 255: When hr_api.check_integrity_violated Then

251: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
252: hr_utility.set_location(' Leaving:'||l_proc, 15);
253: --
254: Exception
255: When hr_api.check_integrity_violated Then
256: -- A check constraint has been violated
257: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
258: ben_ejp_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.check_integrity_violated Then
256: -- A check constraint has been violated
257: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
258: ben_ejp_shd.constraint_error
259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
260: When hr_api.unique_integrity_violated Then
261: -- Unique integrity has been violated
262: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
263: ben_ejp_shd.constraint_error

Line 260: When hr_api.unique_integrity_violated Then

256: -- A check constraint has been violated
257: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
258: ben_ejp_shd.constraint_error
259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
260: When hr_api.unique_integrity_violated Then
261: -- Unique integrity has been violated
262: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
263: ben_ejp_shd.constraint_error
264: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

260: When hr_api.unique_integrity_violated Then
261: -- Unique integrity has been violated
262: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
263: ben_ejp_shd.constraint_error
264: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
265: When Others Then
266: ben_ejp_shd.g_api_dml := false; -- Unset the api dml status
267: Raise;
268: End dt_insert_dml;

Line 491: when hr_api.cannot_find_prog_unit then

487: );
488: --
489: exception
490: --
491: when hr_api.cannot_find_prog_unit then
492: --
493: hr_api.cannot_find_prog_unit_error
494: (p_module_name => 'ben_elig_job_prte_f'
495: ,p_hook_type => 'AI');

Line 493: hr_api.cannot_find_prog_unit_error

489: exception
490: --
491: when hr_api.cannot_find_prog_unit then
492: --
493: hr_api.cannot_find_prog_unit_error
494: (p_module_name => 'ben_elig_job_prte_f'
495: ,p_hook_type => 'AI');
496: --
497: end;

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

526: --
527: -- Post Failure:
528: -- The Lck process can fail for:
529: -- 1) When attempting to lock the row the row could already be locked by
530: -- another user. This will raise the HR_Api.Object_Locked exception.
531: -- 2) When attempting to the lock the parent which doesn't exist.
532: -- For the entity to be locked the parent must exist!
533: --
534: -- Developer Implementation Notes: