DBA Data[Home] [Help]

APPS.HR_PDT_INS dependencies on HR_API

Line 228: When hr_api.check_integrity_violated Then

224: --
225: --
226: hr_utility.set_location(' Leaving:'||l_proc, 10);
227: Exception
228: When hr_api.check_integrity_violated Then
229: -- A check constraint has been violated
230: --
231: hr_pdt_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

228: When hr_api.check_integrity_violated Then
229: -- A check constraint has been violated
230: --
231: hr_pdt_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.parent_integrity_violated Then
234: -- Parent integrity has been violated
235: --
236: hr_pdt_shd.constraint_error

Line 233: When hr_api.parent_integrity_violated Then

229: -- A check constraint has been violated
230: --
231: hr_pdt_shd.constraint_error
232: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
233: When hr_api.parent_integrity_violated Then
234: -- Parent integrity has been violated
235: --
236: hr_pdt_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

233: When hr_api.parent_integrity_violated Then
234: -- Parent integrity has been violated
235: --
236: hr_pdt_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
238: When hr_api.unique_integrity_violated Then
239: -- Unique integrity has been violated
240: --
241: hr_pdt_shd.constraint_error

Line 238: When hr_api.unique_integrity_violated Then

234: -- Parent integrity has been violated
235: --
236: hr_pdt_shd.constraint_error
237: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
238: When hr_api.unique_integrity_violated Then
239: -- Unique integrity has been violated
240: --
241: hr_pdt_shd.constraint_error
242: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

238: When hr_api.unique_integrity_violated Then
239: -- Unique integrity has been violated
240: --
241: hr_pdt_shd.constraint_error
242: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
243: When Others Then
244: --
245: Raise;
246: End insert_dml;

Line 517: when hr_api.cannot_find_prog_unit then

513: );
514: --
515: exception
516: --
517: when hr_api.cannot_find_prog_unit then
518: --
519: hr_api.cannot_find_prog_unit_error
520: (p_module_name => 'HR_PERSON_DEPLOYMENTS'
521: ,p_hook_type => 'AI');

Line 519: hr_api.cannot_find_prog_unit_error

515: exception
516: --
517: when hr_api.cannot_find_prog_unit then
518: --
519: hr_api.cannot_find_prog_unit_error
520: (p_module_name => 'HR_PERSON_DEPLOYMENTS'
521: ,p_hook_type => 'AI');
522: --
523: end;