DBA Data[Home] [Help]

APPS.PER_ABC_INS dependencies on HR_API

Line 238: When hr_api.check_integrity_violated Then

234: per_abc_shd.g_api_dml := false; -- Unset the api dml status
235: --
236: hr_utility.set_location(' Leaving:'||l_proc, 10);
237: Exception
238: When hr_api.check_integrity_violated Then
239: -- A check constraint has been violated
240: per_abc_shd.g_api_dml := false; -- Unset the api dml status
241: per_abc_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.check_integrity_violated Then
239: -- A check constraint has been violated
240: per_abc_shd.g_api_dml := false; -- Unset the api dml status
241: per_abc_shd.constraint_error
242: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
243: When hr_api.parent_integrity_violated Then
244: -- Parent integrity has been violated
245: per_abc_shd.g_api_dml := false; -- Unset the api dml status
246: per_abc_shd.constraint_error

Line 243: When hr_api.parent_integrity_violated Then

239: -- A check constraint has been violated
240: per_abc_shd.g_api_dml := false; -- Unset the api dml status
241: per_abc_shd.constraint_error
242: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
243: When hr_api.parent_integrity_violated Then
244: -- Parent integrity has been violated
245: per_abc_shd.g_api_dml := false; -- Unset the api dml status
246: per_abc_shd.constraint_error
247: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

243: When hr_api.parent_integrity_violated Then
244: -- Parent integrity has been violated
245: per_abc_shd.g_api_dml := false; -- Unset the api dml status
246: per_abc_shd.constraint_error
247: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
248: When hr_api.unique_integrity_violated Then
249: -- Unique integrity has been violated
250: per_abc_shd.g_api_dml := false; -- Unset the api dml status
251: per_abc_shd.constraint_error

Line 248: When hr_api.unique_integrity_violated Then

244: -- Parent integrity has been violated
245: per_abc_shd.g_api_dml := false; -- Unset the api dml status
246: per_abc_shd.constraint_error
247: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
248: When hr_api.unique_integrity_violated Then
249: -- Unique integrity has been violated
250: per_abc_shd.g_api_dml := false; -- Unset the api dml status
251: per_abc_shd.constraint_error
252: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

248: When hr_api.unique_integrity_violated Then
249: -- Unique integrity has been violated
250: per_abc_shd.g_api_dml := false; -- Unset the api dml status
251: per_abc_shd.constraint_error
252: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
253: When Others Then
254: per_abc_shd.g_api_dml := false; -- Unset the api dml status
255: Raise;
256: End insert_dml;

Line 537: when hr_api.cannot_find_prog_unit then

533: );
534: --
535: exception
536: --
537: when hr_api.cannot_find_prog_unit then
538: --
539: hr_api.cannot_find_prog_unit_error
540: (p_module_name => 'PER_ABSENCE_CASES'
541: ,p_hook_type => 'AI');

Line 539: hr_api.cannot_find_prog_unit_error

535: exception
536: --
537: when hr_api.cannot_find_prog_unit then
538: --
539: hr_api.cannot_find_prog_unit_error
540: (p_module_name => 'PER_ABSENCE_CASES'
541: ,p_hook_type => 'AI');
542: --
543: end;