DBA Data[Home] [Help]

APPS.BEN_LEN_INS dependencies on HR_API

Line 274: When hr_api.check_integrity_violated Then

270: ben_len_shd.g_api_dml := false; -- Unset the api dml status
271: hr_utility.set_location(' Leaving:'||l_proc, 15);
272: --
273: Exception
274: When hr_api.check_integrity_violated Then
275: -- A check constraint has been violated
276: ben_len_shd.g_api_dml := false; -- Unset the api dml status
277: ben_len_shd.constraint_error
278: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

274: When hr_api.check_integrity_violated Then
275: -- A check constraint has been violated
276: ben_len_shd.g_api_dml := false; -- Unset the api dml status
277: ben_len_shd.constraint_error
278: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
279: When hr_api.unique_integrity_violated Then
280: -- Unique integrity has been violated
281: ben_len_shd.g_api_dml := false; -- Unset the api dml status
282: ben_len_shd.constraint_error

Line 279: When hr_api.unique_integrity_violated Then

275: -- A check constraint has been violated
276: ben_len_shd.g_api_dml := false; -- Unset the api dml status
277: ben_len_shd.constraint_error
278: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
279: When hr_api.unique_integrity_violated Then
280: -- Unique integrity has been violated
281: ben_len_shd.g_api_dml := false; -- Unset the api dml status
282: ben_len_shd.constraint_error
283: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

279: When hr_api.unique_integrity_violated Then
280: -- Unique integrity has been violated
281: ben_len_shd.g_api_dml := false; -- Unset the api dml status
282: ben_len_shd.constraint_error
283: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
284: When Others Then
285: ben_len_shd.g_api_dml := false; -- Unset the api dml status
286: Raise;
287: End dt_insert_dml;

Line 493: when hr_api.cannot_find_prog_unit then

489: );
490: --
491: exception
492: --
493: when hr_api.cannot_find_prog_unit then
494: --
495: hr_api.cannot_find_prog_unit_error
496: (p_module_name => 'ben_lee_rsn_f'
497: ,p_hook_type => 'AI');

Line 495: hr_api.cannot_find_prog_unit_error

491: exception
492: --
493: when hr_api.cannot_find_prog_unit then
494: --
495: hr_api.cannot_find_prog_unit_error
496: (p_module_name => 'ben_lee_rsn_f'
497: ,p_hook_type => 'AI');
498: --
499: end;

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

528: --
529: -- Post Failure:
530: -- The Lck process can fail for:
531: -- 1) When attempting to lock the row the row could already be locked by
532: -- another user. This will raise the HR_Api.Object_Locked exception.
533: -- 2) When attempting to the lock the parent which doesn't exist.
534: -- For the entity to be locked the parent must exist!
535: --
536: -- Developer Implementation Notes: