DBA Data[Home] [Help]

APPS.BEN_CTP_INS dependencies on HR_API

Line 358: When hr_api.check_integrity_violated Then

354: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
355: hr_utility.set_location(' Leaving:'||l_proc, 15);
356: --
357: Exception
358: When hr_api.check_integrity_violated Then
359: -- A check constraint has been violated
360: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
361: ben_ctp_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

358: When hr_api.check_integrity_violated Then
359: -- A check constraint has been violated
360: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
361: ben_ctp_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
366: ben_ctp_shd.constraint_error

Line 363: When hr_api.unique_integrity_violated Then

359: -- A check constraint has been violated
360: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
361: ben_ctp_shd.constraint_error
362: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
366: ben_ctp_shd.constraint_error
367: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

363: When hr_api.unique_integrity_violated Then
364: -- Unique integrity has been violated
365: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
366: ben_ctp_shd.constraint_error
367: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
368: When Others Then
369: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
370: Raise;
371: End dt_insert_dml;

Line 622: when hr_api.cannot_find_prog_unit then

618: );
619: --
620: exception
621: --
622: when hr_api.cannot_find_prog_unit then
623: --
624: hr_api.cannot_find_prog_unit_error
625: (p_module_name => 'ben_ptip_f'
626: ,p_hook_type => 'AI');

Line 624: hr_api.cannot_find_prog_unit_error

620: exception
621: --
622: when hr_api.cannot_find_prog_unit then
623: --
624: hr_api.cannot_find_prog_unit_error
625: (p_module_name => 'ben_ptip_f'
626: ,p_hook_type => 'AI');
627: --
628: end;

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

657: --
658: -- Post Failure:
659: -- The Lck process can fail for:
660: -- 1) When attempting to lock the row the row could already be locked by
661: -- another user. This will raise the HR_Api.Object_Locked exception.
662: -- 2) When attempting to the lock the parent which doesn't exist.
663: -- For the entity to be locked the parent must exist!
664: --
665: -- Developer Implementation Notes: