DBA Data[Home] [Help]

APPS.BEN_PBM_INS dependencies on HR_API

Line 248: When hr_api.check_integrity_violated Then

244: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
245: hr_utility.set_location(' Leaving:'||l_proc, 15);
246: --
247: Exception
248: When hr_api.check_integrity_violated Then
249: -- A check constraint has been violated
250: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
251: ben_pbm_shd.constraint_error
252: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

248: When hr_api.check_integrity_violated Then
249: -- A check constraint has been violated
250: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
251: ben_pbm_shd.constraint_error
252: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
253: When hr_api.unique_integrity_violated Then
254: -- Unique integrity has been violated
255: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
256: ben_pbm_shd.constraint_error

Line 253: When hr_api.unique_integrity_violated Then

249: -- A check constraint has been violated
250: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
251: ben_pbm_shd.constraint_error
252: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
253: When hr_api.unique_integrity_violated Then
254: -- Unique integrity has been violated
255: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
256: ben_pbm_shd.constraint_error
257: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

253: When hr_api.unique_integrity_violated Then
254: -- Unique integrity has been violated
255: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
256: ben_pbm_shd.constraint_error
257: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
258: When Others Then
259: ben_pbm_shd.g_api_dml := false; -- Unset the api dml status
260: Raise;
261: End dt_insert_dml;

Line 453: when hr_api.cannot_find_prog_unit then

449: );
450: --
451: exception
452: --
453: when hr_api.cannot_find_prog_unit then
454: --
455: hr_api.cannot_find_prog_unit_error
456: (p_module_name => 'ben_pl_r_oipl_prem_by_mo_f'
457: ,p_hook_type => 'AI');

Line 455: hr_api.cannot_find_prog_unit_error

451: exception
452: --
453: when hr_api.cannot_find_prog_unit then
454: --
455: hr_api.cannot_find_prog_unit_error
456: (p_module_name => 'ben_pl_r_oipl_prem_by_mo_f'
457: ,p_hook_type => 'AI');
458: --
459: end;

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

488: --
489: -- Post Failure:
490: -- The Lck process can fail for:
491: -- 1) When attempting to lock the row the row could already be locked by
492: -- another user. This will raise the HR_Api.Object_Locked exception.
493: -- 2) When attempting to the lock the parent which doesn't exist.
494: -- For the entity to be locked the parent must exist!
495: --
496: -- Developer Implementation Notes: