DBA Data[Home] [Help]

APPS.BEN_COP_INS dependencies on HR_API

Line 300: When hr_api.check_integrity_violated Then

296: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
297: hr_utility.set_location(' Leaving:'||l_proc, 15);
298: --
299: Exception
300: When hr_api.check_integrity_violated Then
301: -- A check constraint has been violated
302: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
303: ben_cop_shd.constraint_error
304: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

300: When hr_api.check_integrity_violated Then
301: -- A check constraint has been violated
302: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
303: ben_cop_shd.constraint_error
304: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
305: When hr_api.unique_integrity_violated Then
306: -- Unique integrity has been violated
307: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
308: ben_cop_shd.constraint_error

Line 305: When hr_api.unique_integrity_violated Then

301: -- A check constraint has been violated
302: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
303: ben_cop_shd.constraint_error
304: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
305: When hr_api.unique_integrity_violated Then
306: -- Unique integrity has been violated
307: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
308: ben_cop_shd.constraint_error
309: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

305: When hr_api.unique_integrity_violated Then
306: -- Unique integrity has been violated
307: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
308: ben_cop_shd.constraint_error
309: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
310: When Others Then
311: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
312: Raise;
313: End dt_insert_dml;

Line 558: when hr_api.cannot_find_prog_unit then

554: );
555: --
556: exception
557: --
558: when hr_api.cannot_find_prog_unit then
559: --
560: hr_api.cannot_find_prog_unit_error
561: (p_module_name => 'ben_oipl_f'
562: ,p_hook_type => 'AI');

Line 560: hr_api.cannot_find_prog_unit_error

556: exception
557: --
558: when hr_api.cannot_find_prog_unit then
559: --
560: hr_api.cannot_find_prog_unit_error
561: (p_module_name => 'ben_oipl_f'
562: ,p_hook_type => 'AI');
563: --
564: end;

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

592: --
593: -- Post Failure:
594: -- The Lck process can fail for:
595: -- 1) When attempting to lock the row the row could already be locked by
596: -- another user. This will raise the HR_Api.Object_Locked exception.
597: -- 2) When attempting to the lock the parent which doesn't exist.
598: -- For the entity to be locked the parent must exist!
599: --
600: -- Developer Implementation Notes: