DBA Data[Home] [Help]

APPS.HR_PSF_INS dependencies on HR_API

Line 440: When hr_api.check_integrity_violated Then

436: hr_utility.set_location(' Leaving:'||l_proc, 15);
437: end if;
438: --
439: Exception
440: When hr_api.check_integrity_violated Then
441: -- A check constraint has been violated
442: hr_psf_shd.constraint_error
443: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
444: When hr_api.unique_integrity_violated Then

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

439: Exception
440: When hr_api.check_integrity_violated Then
441: -- A check constraint has been violated
442: hr_psf_shd.constraint_error
443: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
444: When hr_api.unique_integrity_violated Then
445: -- Unique integrity has been violated
446: hr_psf_shd.constraint_error
447: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 444: When hr_api.unique_integrity_violated Then

440: When hr_api.check_integrity_violated Then
441: -- A check constraint has been violated
442: hr_psf_shd.constraint_error
443: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
444: When hr_api.unique_integrity_violated Then
445: -- Unique integrity has been violated
446: hr_psf_shd.constraint_error
447: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
448: When Others Then

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

443: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
444: When hr_api.unique_integrity_violated Then
445: -- Unique integrity has been violated
446: hr_psf_shd.constraint_error
447: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
448: When Others Then
449: Raise;
450: End dt_insert_dml;
451: --

Line 734: when hr_api.cannot_find_prog_unit then

730: p_program_update_date => p_rec.program_update_date ,
731: p_object_version_number => p_rec.object_version_number ,
732: p_effective_date => p_effective_date );
733: exception
734: when hr_api.cannot_find_prog_unit then
735: hr_api.cannot_find_prog_unit_error
736: (p_module_name => 'HR_ALL_POSITIONS'
737: ,p_hook_type => 'AI'
738: );

Line 735: hr_api.cannot_find_prog_unit_error

731: p_object_version_number => p_rec.object_version_number ,
732: p_effective_date => p_effective_date );
733: exception
734: when hr_api.cannot_find_prog_unit then
735: hr_api.cannot_find_prog_unit_error
736: (p_module_name => 'HR_ALL_POSITIONS'
737: ,p_hook_type => 'AI'
738: );
739: End ;

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

774: --
775: -- Post Failure:
776: -- The Lck process can fail for:
777: -- 1) When attempting to lock the row the row could already be locked by
778: -- another user. This will raise the HR_Api.Object_Locked exception.
779: -- 2) When attempting to the lock the parent which doesn't exist.
780: -- For the entity to be locked the parent must exist!
781: --
782: -- Developer Implementation Notes:

Line 958: Raise HR_Api.Validate_Enabled;

954: --
955: -- If we are validating then raise the Validate_Enabled exception
956: --
957: If p_validate then
958: Raise HR_Api.Validate_Enabled;
959: End If;
960: --
961: --
962: if g_debug then

Line 967: When HR_Api.Validate_Enabled Then

963: hr_utility.set_location(' Leaving:'||l_proc, 10);
964: end if;
965:
966: Exception
967: When HR_Api.Validate_Enabled Then
968: --
969: -- As the Validate_Enabled exception has been raised
970: -- we must rollback to the savepoint
971: --