DBA Data[Home] [Help]

APPS.GHR_PDH_INS dependencies on HR_API

Line 109: When hr_api.check_integrity_violated Then

105:
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 10);
108: Exception
109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: ghr_pdh_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.parent_integrity_violated Then

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

108: Exception
109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: ghr_pdh_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.parent_integrity_violated Then
114: -- Parent integrity has been violated
115: ghr_pdh_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 113: When hr_api.parent_integrity_violated Then

109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: ghr_pdh_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.parent_integrity_violated Then
114: -- Parent integrity has been violated
115: ghr_pdh_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.unique_integrity_violated Then

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

112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.parent_integrity_violated Then
114: -- Parent integrity has been violated
115: ghr_pdh_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.unique_integrity_violated Then
118: -- Unique integrity has been violated
119: ghr_pdh_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 117: When hr_api.unique_integrity_violated Then

113: When hr_api.parent_integrity_violated Then
114: -- Parent integrity has been violated
115: ghr_pdh_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.unique_integrity_violated Then
118: -- Unique integrity has been violated
119: ghr_pdh_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When Others Then

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

116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When hr_api.unique_integrity_violated Then
118: -- Unique integrity has been violated
119: ghr_pdh_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When Others Then
122: Raise;
123: End insert_dml;
124: --

Line 250: when hr_api.cannot_find_prog_unit then

246: p_item_key => p_rec.item_key,
247: p_object_version_number => p_rec.object_version_number);
248:
249: exception
250: when hr_api.cannot_find_prog_unit then
251: hr_api.cannot_find_prog_unit_error
252: ( p_module_name => 'GHR_PD_ROUTING_HISTORY'
253: ,p_hook_type => 'AI'
254: );

Line 251: hr_api.cannot_find_prog_unit_error

247: p_object_version_number => p_rec.object_version_number);
248:
249: exception
250: when hr_api.cannot_find_prog_unit then
251: hr_api.cannot_find_prog_unit_error
252: ( p_module_name => 'GHR_PD_ROUTING_HISTORY'
253: ,p_hook_type => 'AI'
254: );
255: end;

Line 304: Raise HR_Api.Validate_Enabled;

300: --
301: -- If we are validating then raise the Validate_Enabled exception
302: --
303: If p_validate then
304: Raise HR_Api.Validate_Enabled;
305: End If;
306: --
307: hr_utility.set_location(' Leaving:'||l_proc, 10);
308: Exception

Line 309: When HR_Api.Validate_Enabled Then

305: End If;
306: --
307: hr_utility.set_location(' Leaving:'||l_proc, 10);
308: Exception
309: When HR_Api.Validate_Enabled Then
310: --
311: -- As the Validate_Enabled exception has been raised
312: -- we must rollback to the savepoint
313: --