DBA Data[Home] [Help]

APPS.BEN_PEO_INS dependencies on HR_API

Line 276: When hr_api.check_integrity_violated Then

272: ben_peo_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_peo_shd.g_api_dml := false; -- Unset the api dml status
279: ben_peo_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_peo_shd.g_api_dml := false; -- Unset the api dml status
279: ben_peo_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_peo_shd.g_api_dml := false; -- Unset the api dml status
284: ben_peo_shd.constraint_error

Line 281: When hr_api.unique_integrity_violated Then

277: -- A check constraint has been violated
278: ben_peo_shd.g_api_dml := false; -- Unset the api dml status
279: ben_peo_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_peo_shd.g_api_dml := false; -- Unset the api dml status
284: ben_peo_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_peo_shd.g_api_dml := false; -- Unset the api dml status
284: ben_peo_shd.constraint_error
285: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
286: When Others Then
287: ben_peo_shd.g_api_dml := false; -- Unset the api dml status
288: Raise;
289: End dt_insert_dml;

Line 496: when hr_api.cannot_find_prog_unit then

492: );
493: --
494: exception
495: --
496: when hr_api.cannot_find_prog_unit then
497: --
498: hr_api.cannot_find_prog_unit_error
499: (p_module_name => 'ben_elig_to_prte_rsn_f'
500: ,p_hook_type => 'AI');

Line 498: hr_api.cannot_find_prog_unit_error

494: exception
495: --
496: when hr_api.cannot_find_prog_unit then
497: --
498: hr_api.cannot_find_prog_unit_error
499: (p_module_name => 'ben_elig_to_prte_rsn_f'
500: ,p_hook_type => 'AI');
501: --
502: end;

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

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