DBA Data[Home] [Help]

APPS.BEN_VPF_INS dependencies on HR_API

Line 413: When hr_api.check_integrity_violated Then

409: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
410: hr_utility.set_location(' Leaving:'||l_proc, 15);
411: --
412: Exception
413: When hr_api.check_integrity_violated Then
414: -- A check constraint has been violated
415: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
416: ben_vpf_shd.constraint_error
417: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

413: When hr_api.check_integrity_violated Then
414: -- A check constraint has been violated
415: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
416: ben_vpf_shd.constraint_error
417: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
418: When hr_api.unique_integrity_violated Then
419: -- Unique integrity has been violated
420: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
421: ben_vpf_shd.constraint_error

Line 418: When hr_api.unique_integrity_violated Then

414: -- A check constraint has been violated
415: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
416: ben_vpf_shd.constraint_error
417: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
418: When hr_api.unique_integrity_violated Then
419: -- Unique integrity has been violated
420: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
421: ben_vpf_shd.constraint_error
422: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

418: When hr_api.unique_integrity_violated Then
419: -- Unique integrity has been violated
420: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
421: ben_vpf_shd.constraint_error
422: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
423: When Others Then
424: ben_vpf_shd.g_api_dml := false; -- Unset the api dml status
425: Raise;
426: End dt_insert_dml;

Line 699: when hr_api.cannot_find_prog_unit then

695: );
696: --
697: exception
698: --
699: when hr_api.cannot_find_prog_unit then
700: --
701: hr_api.cannot_find_prog_unit_error
702: (p_module_name => 'ben_vrbl_rt_prfl_f'
703: ,p_hook_type => 'AI');

Line 701: hr_api.cannot_find_prog_unit_error

697: exception
698: --
699: when hr_api.cannot_find_prog_unit then
700: --
701: hr_api.cannot_find_prog_unit_error
702: (p_module_name => 'ben_vrbl_rt_prfl_f'
703: ,p_hook_type => 'AI');
704: --
705: end;

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

734: --
735: -- Post Failure:
736: -- The Lck process can fail for:
737: -- 1) When attempting to lock the row the row could already be locked by
738: -- another user. This will raise the HR_Api.Object_Locked exception.
739: -- 2) When attempting to the lock the parent which doesn't exist.
740: -- For the entity to be locked the parent must exist!
741: --
742: -- Developer Implementation Notes: