DBA Data[Home] [Help]

APPS.BEN_PCD_INS dependencies on HR_API

Line 258: When hr_api.check_integrity_violated Then

254: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
255: hr_utility.set_location(' Leaving:'||l_proc, 15);
256: --
257: Exception
258: When hr_api.check_integrity_violated Then
259: -- A check constraint has been violated
260: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
261: ben_pcd_shd.constraint_error
262: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

258: When hr_api.check_integrity_violated Then
259: -- A check constraint has been violated
260: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
261: ben_pcd_shd.constraint_error
262: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
263: When hr_api.unique_integrity_violated Then
264: -- Unique integrity has been violated
265: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
266: ben_pcd_shd.constraint_error

Line 263: When hr_api.unique_integrity_violated Then

259: -- A check constraint has been violated
260: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
261: ben_pcd_shd.constraint_error
262: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
263: When hr_api.unique_integrity_violated Then
264: -- Unique integrity has been violated
265: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
266: ben_pcd_shd.constraint_error
267: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

263: When hr_api.unique_integrity_violated Then
264: -- Unique integrity has been violated
265: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
266: ben_pcd_shd.constraint_error
267: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
268: When Others Then
269: ben_pcd_shd.g_api_dml := false; -- Unset the api dml status
270: Raise;
271: End dt_insert_dml;

Line 523: when hr_api.cannot_find_prog_unit then

519: );
520: --
521: exception
522: --
523: when hr_api.cannot_find_prog_unit then
524: --
525: hr_api.cannot_find_prog_unit_error
526: (p_module_name => 'ben_per_cm_prvdd_f'
527: ,p_hook_type => 'AI');

Line 525: hr_api.cannot_find_prog_unit_error

521: exception
522: --
523: when hr_api.cannot_find_prog_unit then
524: --
525: hr_api.cannot_find_prog_unit_error
526: (p_module_name => 'ben_per_cm_prvdd_f'
527: ,p_hook_type => 'AI');
528: --
529: end;

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

558: --
559: -- Post Failure:
560: -- The Lck process can fail for:
561: -- 1) When attempting to lock the row the row could already be locked by
562: -- another user. This will raise the HR_Api.Object_Locked exception.
563: -- 2) When attempting to the lock the parent which doesn't exist.
564: -- For the entity to be locked the parent must exist!
565: --
566: -- Developer Implementation Notes: