DBA Data[Home] [Help]

APPS.BEN_ECV_INS dependencies on HR_API

Line 264: When hr_api.check_integrity_violated Then

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

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

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

Line 269: When hr_api.unique_integrity_violated Then

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

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

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

Line 480: when hr_api.cannot_find_prog_unit then

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

Line 482: hr_api.cannot_find_prog_unit_error

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

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

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