DBA Data[Home] [Help]

APPS.BEN_BPR_INS dependencies on HR_API

Line 266: When hr_api.check_integrity_violated Then

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

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

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

Line 271: When hr_api.unique_integrity_violated Then

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

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

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

Line 482: when hr_api.cannot_find_prog_unit then

478: );
479: --
480: exception
481: --
482: when hr_api.cannot_find_prog_unit then
483: --
484: hr_api.cannot_find_prog_unit_error
485: (p_module_name => 'ben_bnft_pool_rlovr_rqmt_f'
486: ,p_hook_type => 'AI');

Line 484: hr_api.cannot_find_prog_unit_error

480: exception
481: --
482: when hr_api.cannot_find_prog_unit then
483: --
484: hr_api.cannot_find_prog_unit_error
485: (p_module_name => 'ben_bnft_pool_rlovr_rqmt_f'
486: ,p_hook_type => 'AI');
487: --
488: end;

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

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