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 773: -- another user. This will raise the HR_Api.Object_Locked exception.

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

Line 953: Raise HR_Api.Validate_Enabled;

949: --
950: -- If we are validating then raise the Validate_Enabled exception
951: --
952: If p_validate then
953: Raise HR_Api.Validate_Enabled;
954: End If;
955: --
956: --
957: if g_debug then

Line 962: When HR_Api.Validate_Enabled Then

958: hr_utility.set_location(' Leaving:'||l_proc, 10);
959: end if;
960:
961: Exception
962: When HR_Api.Validate_Enabled Then
963: --
964: -- As the Validate_Enabled exception has been raised
965: -- we must rollback to the savepoint
966: --