DBA Data[Home] [Help]

APPS.BEN_LPR_INS dependencies on HR_API

Line 248: When hr_api.check_integrity_violated Then

244: ben_lpr_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_lpr_shd.g_api_dml := false; -- Unset the api dml status
251: ben_lpr_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_lpr_shd.g_api_dml := false; -- Unset the api dml status
251: ben_lpr_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_lpr_shd.g_api_dml := false; -- Unset the api dml status
256: ben_lpr_shd.constraint_error

Line 253: When hr_api.unique_integrity_violated Then

249: -- A check constraint has been violated
250: ben_lpr_shd.g_api_dml := false; -- Unset the api dml status
251: ben_lpr_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_lpr_shd.g_api_dml := false; -- Unset the api dml status
256: ben_lpr_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_lpr_shd.g_api_dml := false; -- Unset the api dml status
256: ben_lpr_shd.constraint_error
257: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
258: When Others Then
259: ben_lpr_shd.g_api_dml := false; -- Unset the api dml status
260: Raise;
261: End dt_insert_dml;

Line 456: when hr_api.cannot_find_prog_unit then

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

Line 458: hr_api.cannot_find_prog_unit_error

454: exception
455: --
456: when hr_api.cannot_find_prog_unit then
457: --
458: hr_api.cannot_find_prog_unit_error
459: (p_module_name => 'ben_ler_chg_plip_enrt_f'
460: ,p_hook_type => 'AI');
461: --
462: end;

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

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