DBA Data[Home] [Help]

APPS.BEN_LBR_INS dependencies on HR_API

Line 268: When hr_api.check_integrity_violated Then

264: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
265: hr_utility.set_location(' Leaving:'||l_proc, 15);
266: --
267: Exception
268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
271: ben_lbr_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
271: ben_lbr_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
276: ben_lbr_shd.constraint_error

Line 273: When hr_api.unique_integrity_violated Then

269: -- A check constraint has been violated
270: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
271: ben_lbr_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
276: ben_lbr_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
276: ben_lbr_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_lbr_shd.g_api_dml := false; -- Unset the api dml status
280: Raise;
281: End dt_insert_dml;

Line 488: when hr_api.cannot_find_prog_unit then

484: );
485: --
486: exception
487: --
488: when hr_api.cannot_find_prog_unit then
489: --
490: hr_api.cannot_find_prog_unit_error
491: (p_module_name => 'ben_ler_bnft_rstrn_f'
492: ,p_hook_type => 'AI');

Line 490: hr_api.cannot_find_prog_unit_error

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

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

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