DBA Data[Home] [Help]

APPS.BEN_ESH_INS dependencies on HR_API

Line 250: When hr_api.check_integrity_violated Then

246: ben_esh_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_esh_shd.g_api_dml := false; -- Unset the api dml status
253: ben_esh_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_esh_shd.g_api_dml := false; -- Unset the api dml status
253: ben_esh_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_esh_shd.g_api_dml := false; -- Unset the api dml status
258: ben_esh_shd.constraint_error

Line 255: When hr_api.unique_integrity_violated Then

251: -- A check constraint has been violated
252: ben_esh_shd.g_api_dml := false; -- Unset the api dml status
253: ben_esh_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_esh_shd.g_api_dml := false; -- Unset the api dml status
258: ben_esh_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_esh_shd.g_api_dml := false; -- Unset the api dml status
258: ben_esh_shd.constraint_error
259: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
260: When Others Then
261: ben_esh_shd.g_api_dml := false; -- Unset the api dml status
262: Raise;
263: End dt_insert_dml;

Line 461: when hr_api.cannot_find_prog_unit then

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

Line 463: hr_api.cannot_find_prog_unit_error

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

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

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