DBA Data[Home] [Help]

APPS.BEN_LDC_INS dependencies on HR_API

Line 250: When hr_api.check_integrity_violated Then

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

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

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

Line 255: When hr_api.unique_integrity_violated Then

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

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

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

Line 459: when hr_api.cannot_find_prog_unit then

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

Line 461: hr_api.cannot_find_prog_unit_error

457: exception
458: --
459: when hr_api.cannot_find_prog_unit then
460: --
461: hr_api.cannot_find_prog_unit_error
462: (p_module_name => 'ben_ler_chg_dpnt_cvg_f'
463: ,p_hook_type => 'AI');
464: --
465: end;

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

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