DBA Data[Home] [Help]

APPS.BEN_PDP_INS dependencies on HR_API

Line 248: When hr_api.check_integrity_violated Then

244: ben_pdp_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_pdp_shd.g_api_dml := false; -- Unset the api dml status
251: ben_pdp_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_pdp_shd.g_api_dml := false; -- Unset the api dml status
251: ben_pdp_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_pdp_shd.g_api_dml := false; -- Unset the api dml status
256: ben_pdp_shd.constraint_error

Line 253: When hr_api.unique_integrity_violated Then

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

Line 482: when hr_api.cannot_find_prog_unit then

478: );
479: --
480: exception
481: --
482: when hr_api.cannot_find_prog_unit then
483: --
484: hr_api.cannot_find_prog_unit_error
485: (p_module_name => 'ben_elig_cvrd_dpnt_f'
486: ,p_hook_type => 'AI');

Line 484: hr_api.cannot_find_prog_unit_error

480: exception
481: --
482: when hr_api.cannot_find_prog_unit then
483: --
484: hr_api.cannot_find_prog_unit_error
485: (p_module_name => 'ben_elig_cvrd_dpnt_f'
486: ,p_hook_type => 'AI');
487: --
488: end;

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

517: --
518: -- Post Failure:
519: -- The Lck process can fail for:
520: -- 1) When attempting to lock the row the row could already be locked by
521: -- another user. This will raise the HR_Api.Object_Locked exception.
522: -- 2) When attempting to the lock the parent which doesn't exist.
523: -- For the entity to be locked the parent must exist!
524: --
525: -- Developer Implementation Notes: