DBA Data[Home] [Help]

APPS.GHR_PRE_INS dependencies on HR_API

Line 85: When hr_api.check_integrity_violated Then

81: --
82:
83: hr_utility.set_location(' Leaving:'||l_proc, 10);
84: Exception
85: When hr_api.check_integrity_violated Then
86: -- A check constraint has been violated
87: ghr_pre_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then

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

84: Exception
85: When hr_api.check_integrity_violated Then
86: -- A check constraint has been violated
87: ghr_pre_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ghr_pre_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 89: When hr_api.parent_integrity_violated Then

85: When hr_api.check_integrity_violated Then
86: -- A check constraint has been violated
87: ghr_pre_shd.constraint_error
88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ghr_pre_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then

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

88: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ghr_pre_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: ghr_pre_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 93: When hr_api.unique_integrity_violated Then

89: When hr_api.parent_integrity_violated Then
90: -- Parent integrity has been violated
91: ghr_pre_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: ghr_pre_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When Others Then

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

92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: ghr_pre_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When Others Then
98: Raise;
99: End insert_dml;
100: --

Line 212: when hr_api.cannot_find_prog_unit then

208: p_remark_code_information5 => p_rec.remark_code_information5,
209: p_object_version_number => p_rec.object_version_number);
210:
211: exception
212: when hr_api.cannot_find_prog_unit then
213: hr_api.cannot_find_prog_unit_error
214: ( p_module_name => 'GHR_PA_REMARKS'
215: ,p_hook_type => 'AI'
216: );

Line 213: hr_api.cannot_find_prog_unit_error

209: p_object_version_number => p_rec.object_version_number);
210:
211: exception
212: when hr_api.cannot_find_prog_unit then
213: hr_api.cannot_find_prog_unit_error
214: ( p_module_name => 'GHR_PA_REMARKS'
215: ,p_hook_type => 'AI'
216: );
217: end;

Line 265: Raise HR_Api.Validate_Enabled;

261: --
262: -- If we are validating then raise the Validate_Enabled exception
263: --
264: If p_validate then
265: Raise HR_Api.Validate_Enabled;
266: End If;
267: --
268: hr_utility.set_location(' Leaving:'||l_proc, 10);
269: Exception

Line 270: When HR_Api.Validate_Enabled Then

266: End If;
267: --
268: hr_utility.set_location(' Leaving:'||l_proc, 10);
269: Exception
270: When HR_Api.Validate_Enabled Then
271: --
272: -- As the Validate_Enabled exception has been raised
273: -- we must rollback to the savepoint
274: --