DBA Data[Home] [Help]

APPS.BEN_CCM_INS dependencies on HR_API

Line 280: When hr_api.check_integrity_violated Then

276: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
277: hr_utility.set_location(' Leaving:'||l_proc, 15);
278: --
279: Exception
280: When hr_api.check_integrity_violated Then
281: -- A check constraint has been violated
282: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
283: ben_ccm_shd.constraint_error
284: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

280: When hr_api.check_integrity_violated Then
281: -- A check constraint has been violated
282: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
283: ben_ccm_shd.constraint_error
284: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
285: When hr_api.unique_integrity_violated Then
286: -- Unique integrity has been violated
287: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
288: ben_ccm_shd.constraint_error

Line 285: When hr_api.unique_integrity_violated Then

281: -- A check constraint has been violated
282: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
283: ben_ccm_shd.constraint_error
284: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
285: When hr_api.unique_integrity_violated Then
286: -- Unique integrity has been violated
287: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
288: ben_ccm_shd.constraint_error
289: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

285: When hr_api.unique_integrity_violated Then
286: -- Unique integrity has been violated
287: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
288: ben_ccm_shd.constraint_error
289: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
290: When Others Then
291: ben_ccm_shd.g_api_dml := false; -- Unset the api dml status
292: Raise;
293: End dt_insert_dml;

Line 503: when hr_api.cannot_find_prog_unit then

499: );
500: --
501: exception
502: --
503: when hr_api.cannot_find_prog_unit then
504: --
505: hr_api.cannot_find_prog_unit_error
506: (p_module_name => 'ben_cvg_amt_calc_mthd_f'
507: ,p_hook_type => 'AI');

Line 505: hr_api.cannot_find_prog_unit_error

501: exception
502: --
503: when hr_api.cannot_find_prog_unit then
504: --
505: hr_api.cannot_find_prog_unit_error
506: (p_module_name => 'ben_cvg_amt_calc_mthd_f'
507: ,p_hook_type => 'AI');
508: --
509: end;

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

538: --
539: -- Post Failure:
540: -- The Lck process can fail for:
541: -- 1) When attempting to lock the row the row could already be locked by
542: -- another user. This will raise the HR_Api.Object_Locked exception.
543: -- 2) When attempting to the lock the parent which doesn't exist.
544: -- For the entity to be locked the parent must exist!
545: --
546: -- Developer Implementation Notes: