DBA Data[Home] [Help]

APPS.BEN_BPL_INS dependencies on HR_API

Line 268: When hr_api.check_integrity_violated Then

264: ben_bpl_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_bpl_shd.g_api_dml := false; -- Unset the api dml status
271: ben_bpl_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_bpl_shd.g_api_dml := false; -- Unset the api dml status
271: ben_bpl_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_bpl_shd.g_api_dml := false; -- Unset the api dml status
276: ben_bpl_shd.constraint_error

Line 273: When hr_api.unique_integrity_violated Then

269: -- A check constraint has been violated
270: ben_bpl_shd.g_api_dml := false; -- Unset the api dml status
271: ben_bpl_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_bpl_shd.g_api_dml := false; -- Unset the api dml status
276: ben_bpl_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_bpl_shd.g_api_dml := false; -- Unset the api dml status
276: ben_bpl_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_bpl_shd.g_api_dml := false; -- Unset the api dml status
280: Raise;
281: End dt_insert_dml;

Line 487: when hr_api.cannot_find_prog_unit then

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

Line 489: hr_api.cannot_find_prog_unit_error

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

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

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