DBA Data[Home] [Help]

APPS.BEN_PRC_INS dependencies on HR_API

Line 298: When hr_api.check_integrity_violated Then

294: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
295: hr_utility.set_location(' Leaving:'||l_proc, 15);
296: --
297: Exception
298: When hr_api.check_integrity_violated Then
299: -- A check constraint has been violated
300: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
301: ben_prc_shd.constraint_error
302: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

298: When hr_api.check_integrity_violated Then
299: -- A check constraint has been violated
300: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
301: ben_prc_shd.constraint_error
302: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
303: When hr_api.unique_integrity_violated Then
304: -- Unique integrity has been violated
305: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
306: ben_prc_shd.constraint_error

Line 303: When hr_api.unique_integrity_violated Then

299: -- A check constraint has been violated
300: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
301: ben_prc_shd.constraint_error
302: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
303: When hr_api.unique_integrity_violated Then
304: -- Unique integrity has been violated
305: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
306: ben_prc_shd.constraint_error
307: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

303: When hr_api.unique_integrity_violated Then
304: -- Unique integrity has been violated
305: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
306: ben_prc_shd.constraint_error
307: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
308: When Others Then
309: ben_prc_shd.g_api_dml := false; -- Unset the api dml status
310: Raise;
311: End dt_insert_dml;

Line 542: when hr_api.cannot_find_prog_unit then

538: );
539: --
540: exception
541: --
542: when hr_api.cannot_find_prog_unit then
543: --
544: hr_api.cannot_find_prog_unit_error
545: (p_module_name => 'ben_prtt_reimbmt_rqst_f'
546: ,p_hook_type => 'AI');

Line 544: hr_api.cannot_find_prog_unit_error

540: exception
541: --
542: when hr_api.cannot_find_prog_unit then
543: --
544: hr_api.cannot_find_prog_unit_error
545: (p_module_name => 'ben_prtt_reimbmt_rqst_f'
546: ,p_hook_type => 'AI');
547: --
548: end;

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

577: --
578: -- Post Failure:
579: -- The Lck process can fail for:
580: -- 1) When attempting to lock the row the row could already be locked by
581: -- another user. This will raise the HR_Api.Object_Locked exception.
582: -- 2) When attempting to the lock the parent which doesn't exist.
583: -- For the entity to be locked the parent must exist!
584: --
585: -- Developer Implementation Notes: