DBA Data[Home] [Help]

APPS.PER_OBJ_INS dependencies on HR_API

Line 223: When hr_api.check_integrity_violated Then

219: --
220: --
221: hr_utility.set_location(' Leaving:'||l_proc, 10);
222: Exception
223: When hr_api.check_integrity_violated Then
224: -- A check constraint has been violated
225: per_obj_shd.constraint_error
226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then

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

222: Exception
223: When hr_api.check_integrity_violated Then
224: -- A check constraint has been violated
225: per_obj_shd.constraint_error
226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 227: When hr_api.parent_integrity_violated Then

223: When hr_api.check_integrity_violated Then
224: -- A check constraint has been violated
225: per_obj_shd.constraint_error
226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then

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

226: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then
232: -- Unique integrity has been violated
233: per_obj_shd.constraint_error
234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 231: When hr_api.unique_integrity_violated Then

227: When hr_api.parent_integrity_violated Then
228: -- Parent integrity has been violated
229: per_obj_shd.constraint_error
230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then
232: -- Unique integrity has been violated
233: per_obj_shd.constraint_error
234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235: When Others Then

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

230: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
231: When hr_api.unique_integrity_violated Then
232: -- Unique integrity has been violated
233: per_obj_shd.constraint_error
234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235: When Others Then
236: Raise;
237: End insert_dml;
238: --

Line 452: when hr_api.cannot_find_prog_unit then

448:
449: p_effective_date => p_effective_date
450: );
451: exception
452: when hr_api.cannot_find_prog_unit then
453: hr_api.cannot_find_prog_unit_error
454: (p_module_name => 'PER_OBJECTIVES'
455: ,p_hook_type => 'AI'
456: );

Line 453: hr_api.cannot_find_prog_unit_error

449: p_effective_date => p_effective_date
450: );
451: exception
452: when hr_api.cannot_find_prog_unit then
453: hr_api.cannot_find_prog_unit_error
454: (p_module_name => 'PER_OBJECTIVES'
455: ,p_hook_type => 'AI'
456: );
457: end;

Line 537: Raise HR_Api.Validate_Enabled;

533: --
534: -- If we are validating then raise the Validate_Enabled exception
535: --
536: If p_validate then
537: Raise HR_Api.Validate_Enabled;
538: End If;
539: --
540: hr_utility.set_location(' Leaving:'||l_proc, 10);
541: Exception

Line 542: When HR_Api.Validate_Enabled Then

538: End If;
539: --
540: hr_utility.set_location(' Leaving:'||l_proc, 10);
541: Exception
542: When HR_Api.Validate_Enabled Then
543: --
544: -- As the Validate_Enabled exception has been raised
545: -- we must rollback to the savepoint
546: --