DBA Data[Home] [Help]

APPS.PE_PEI_INS dependencies on HR_API

Line 194: When hr_api.check_integrity_violated Then

190: );
191: --
192: hr_utility.set_location(' Leaving:'||l_proc, 10);
193: Exception
194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: pe_pei_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When hr_api.parent_integrity_violated Then

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

193: Exception
194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: pe_pei_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When hr_api.parent_integrity_violated Then
199: -- Parent integrity has been violated
200: pe_pei_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 198: When hr_api.parent_integrity_violated Then

194: When hr_api.check_integrity_violated Then
195: -- A check constraint has been violated
196: pe_pei_shd.constraint_error
197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When hr_api.parent_integrity_violated Then
199: -- Parent integrity has been violated
200: pe_pei_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
202: When hr_api.unique_integrity_violated Then

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

197: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
198: When hr_api.parent_integrity_violated Then
199: -- Parent integrity has been violated
200: pe_pei_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
202: When hr_api.unique_integrity_violated Then
203: -- Unique integrity has been violated
204: pe_pei_shd.constraint_error
205: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 202: When hr_api.unique_integrity_violated Then

198: When hr_api.parent_integrity_violated Then
199: -- Parent integrity has been violated
200: pe_pei_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
202: When hr_api.unique_integrity_violated Then
203: -- Unique integrity has been violated
204: pe_pei_shd.constraint_error
205: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
206: When Others Then

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

201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
202: When hr_api.unique_integrity_violated Then
203: -- Unique integrity has been violated
204: pe_pei_shd.constraint_error
205: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
206: When Others Then
207: Raise;
208: End insert_dml;
209: --

Line 370: when hr_api.cannot_find_prog_unit then

366: p_pei_information29 => p_rec.pei_information29 ,
367: p_pei_information30 => p_rec.pei_information30
368: );
369: exception
370: when hr_api.cannot_find_prog_unit then
371: hr_api.cannot_find_prog_unit_error
372: ( p_module_name => 'PER_PEOPLE_EXTRA_INFO'
373: ,p_hook_type => 'AI'
374: );

Line 371: hr_api.cannot_find_prog_unit_error

367: p_pei_information30 => p_rec.pei_information30
368: );
369: exception
370: when hr_api.cannot_find_prog_unit then
371: hr_api.cannot_find_prog_unit_error
372: ( p_module_name => 'PER_PEOPLE_EXTRA_INFO'
373: ,p_hook_type => 'AI'
374: );
375: end;

Line 453: Raise HR_Api.Validate_Enabled;

449: --
450: -- If we are validating then raise the Validate_Enabled exception
451: --
452: If p_validate then
453: Raise HR_Api.Validate_Enabled;
454: End If;
455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 10);
457: Exception

Line 458: When HR_Api.Validate_Enabled Then

454: End If;
455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 10);
457: Exception
458: When HR_Api.Validate_Enabled Then
459: --
460: -- As the Validate_Enabled exception has been raised
461: -- we must rollback to the savepoint
462: --