DBA Data[Home] [Help]

APPS.BEN_CLP_INS dependencies on HR_API

Line 276: When hr_api.check_integrity_violated Then

272: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
273: hr_utility.set_location(' Leaving:'||l_proc, 15);
274: --
275: Exception
276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

276: When hr_api.check_integrity_violated Then
277: -- A check constraint has been violated
278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error

Line 281: When hr_api.unique_integrity_violated Then

277: -- A check constraint has been violated
278: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
279: ben_clp_shd.constraint_error
280: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

281: When hr_api.unique_integrity_violated Then
282: -- Unique integrity has been violated
283: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
284: ben_clp_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_clp_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;
289: End dt_insert_dml;

Line 492: when hr_api.cannot_find_prog_unit then

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

Line 494: hr_api.cannot_find_prog_unit_error

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

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

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