DBA Data[Home] [Help]

APPS.OTA_OFF_INS dependencies on HR_API

Line 198: When hr_api.check_integrity_violated Then

194: --
195: --
196: hr_utility.set_location(' Leaving:'||l_proc, 10);
197: Exception
198: When hr_api.check_integrity_violated Then
199: -- A check constraint has been violated
200: --
201: ota_off_shd.constraint_error
202: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

198: When hr_api.check_integrity_violated Then
199: -- A check constraint has been violated
200: --
201: ota_off_shd.constraint_error
202: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
203: When hr_api.parent_integrity_violated Then
204: -- Parent integrity has been violated
205: --
206: ota_off_shd.constraint_error

Line 203: When hr_api.parent_integrity_violated Then

199: -- A check constraint has been violated
200: --
201: ota_off_shd.constraint_error
202: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
203: When hr_api.parent_integrity_violated Then
204: -- Parent integrity has been violated
205: --
206: ota_off_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

203: When hr_api.parent_integrity_violated Then
204: -- Parent integrity has been violated
205: --
206: ota_off_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: --
211: ota_off_shd.constraint_error

Line 208: When hr_api.unique_integrity_violated Then

204: -- Parent integrity has been violated
205: --
206: ota_off_shd.constraint_error
207: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: --
211: ota_off_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

208: When hr_api.unique_integrity_violated Then
209: -- Unique integrity has been violated
210: --
211: ota_off_shd.constraint_error
212: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
213: When Others Then
214: --
215: Raise;
216: End insert_dml;

Line 456: when hr_api.cannot_find_prog_unit then

452: );
453: --
454: exception
455: --
456: when hr_api.cannot_find_prog_unit then
457: --
458: hr_api.cannot_find_prog_unit_error
459: (p_module_name => 'OTA_OFFERINGS'
460: ,p_hook_type => 'AI');

Line 458: hr_api.cannot_find_prog_unit_error

454: exception
455: --
456: when hr_api.cannot_find_prog_unit then
457: --
458: hr_api.cannot_find_prog_unit_error
459: (p_module_name => 'OTA_OFFERINGS'
460: ,p_hook_type => 'AI');
461: --
462: end;