DBA Data[Home] [Help]

APPS.BEN_COP_INS dependencies on HR_API

Line 298: When hr_api.check_integrity_violated Then

294: ben_cop_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_cop_shd.g_api_dml := false; -- Unset the api dml status
301: ben_cop_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_cop_shd.g_api_dml := false; -- Unset the api dml status
301: ben_cop_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_cop_shd.g_api_dml := false; -- Unset the api dml status
306: ben_cop_shd.constraint_error

Line 303: When hr_api.unique_integrity_violated Then

299: -- A check constraint has been violated
300: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
301: ben_cop_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_cop_shd.g_api_dml := false; -- Unset the api dml status
306: ben_cop_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_cop_shd.g_api_dml := false; -- Unset the api dml status
306: ben_cop_shd.constraint_error
307: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
308: When Others Then
309: ben_cop_shd.g_api_dml := false; -- Unset the api dml status
310: Raise;
311: End dt_insert_dml;

Line 555: when hr_api.cannot_find_prog_unit then

551: );
552: --
553: exception
554: --
555: when hr_api.cannot_find_prog_unit then
556: --
557: hr_api.cannot_find_prog_unit_error
558: (p_module_name => 'ben_oipl_f'
559: ,p_hook_type => 'AI');

Line 557: hr_api.cannot_find_prog_unit_error

553: exception
554: --
555: when hr_api.cannot_find_prog_unit then
556: --
557: hr_api.cannot_find_prog_unit_error
558: (p_module_name => 'ben_oipl_f'
559: ,p_hook_type => 'AI');
560: --
561: end;

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

589: --
590: -- Post Failure:
591: -- The Lck process can fail for:
592: -- 1) When attempting to lock the row the row could already be locked by
593: -- another user. This will raise the HR_Api.Object_Locked exception.
594: -- 2) When attempting to the lock the parent which doesn't exist.
595: -- For the entity to be locked the parent must exist!
596: --
597: -- Developer Implementation Notes: