DBA Data[Home] [Help]

APPS.BEN_LER_INS dependencies on HR_API

Line 306: When hr_api.check_integrity_violated Then

302: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
303: hr_utility.set_location(' Leaving:'||l_proc, 15);
304: --
305: Exception
306: When hr_api.check_integrity_violated Then
307: -- A check constraint has been violated
308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

306: When hr_api.check_integrity_violated Then
307: -- A check constraint has been violated
308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error

Line 311: When hr_api.unique_integrity_violated Then

307: -- A check constraint has been violated
308: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
309: ben_ler_shd.constraint_error
310: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error
315: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

311: When hr_api.unique_integrity_violated Then
312: -- Unique integrity has been violated
313: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
314: ben_ler_shd.constraint_error
315: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
316: When Others Then
317: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
318: Raise;
319: End dt_insert_dml;

Line 524: when hr_api.cannot_find_prog_unit then

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

Line 526: hr_api.cannot_find_prog_unit_error

522: exception
523: --
524: when hr_api.cannot_find_prog_unit then
525: --
526: hr_api.cannot_find_prog_unit_error
527: (p_module_name => 'ben_ler_f'
528: ,p_hook_type => 'AI');
529: --
530: 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: