DBA Data[Home] [Help]

APPS.BEN_EPA_INS dependencies on HR_API

Line 266: When hr_api.check_integrity_violated Then

262: ben_epa_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_epa_shd.g_api_dml := false; -- Unset the api dml status
269: ben_epa_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_epa_shd.g_api_dml := false; -- Unset the api dml status
269: ben_epa_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_epa_shd.g_api_dml := false; -- Unset the api dml status
274: ben_epa_shd.constraint_error

Line 271: When hr_api.unique_integrity_violated Then

267: -- A check constraint has been violated
268: ben_epa_shd.g_api_dml := false; -- Unset the api dml status
269: ben_epa_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_epa_shd.g_api_dml := false; -- Unset the api dml status
274: ben_epa_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_epa_shd.g_api_dml := false; -- Unset the api dml status
274: ben_epa_shd.constraint_error
275: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
276: When Others Then
277: ben_epa_shd.g_api_dml := false; -- Unset the api dml status
278: Raise;
279: End dt_insert_dml;

Line 479: when hr_api.cannot_find_prog_unit then

475: );
476: --
477: exception
478: --
479: when hr_api.cannot_find_prog_unit then
480: --
481: hr_api.cannot_find_prog_unit_error
482: (p_module_name => 'ben_prtn_elig_f'
483: ,p_hook_type => 'AI');

Line 481: hr_api.cannot_find_prog_unit_error

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

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

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