DBA Data[Home] [Help]

APPS.PER_MEA_INS dependencies on HR_API

Line 244: When hr_api.check_integrity_violated Then

240: --
241: --
242: hr_utility.set_location(' Leaving:'||l_proc, 10);
243: Exception
244: When hr_api.check_integrity_violated Then
245: -- A check constraint has been violated
246: --
247: per_mea_shd.constraint_error
248: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

244: When hr_api.check_integrity_violated Then
245: -- A check constraint has been violated
246: --
247: per_mea_shd.constraint_error
248: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
249: When hr_api.parent_integrity_violated Then
250: -- Parent integrity has been violated
251: --
252: per_mea_shd.constraint_error

Line 249: When hr_api.parent_integrity_violated Then

245: -- A check constraint has been violated
246: --
247: per_mea_shd.constraint_error
248: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
249: When hr_api.parent_integrity_violated Then
250: -- Parent integrity has been violated
251: --
252: per_mea_shd.constraint_error
253: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

249: When hr_api.parent_integrity_violated Then
250: -- Parent integrity has been violated
251: --
252: per_mea_shd.constraint_error
253: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
254: When hr_api.unique_integrity_violated Then
255: -- Unique integrity has been violated
256: --
257: per_mea_shd.constraint_error

Line 254: When hr_api.unique_integrity_violated Then

250: -- Parent integrity has been violated
251: --
252: per_mea_shd.constraint_error
253: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
254: When hr_api.unique_integrity_violated Then
255: -- Unique integrity has been violated
256: --
257: per_mea_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

254: When hr_api.unique_integrity_violated Then
255: -- Unique integrity has been violated
256: --
257: per_mea_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When Others Then
260: --
261: Raise;
262: End insert_dml;

Line 447: when hr_api.cannot_find_prog_unit then

443: );
444: --
445: exception
446: --
447: when hr_api.cannot_find_prog_unit then
448: --
449: hr_api.cannot_find_prog_unit_error
450: (p_module_name => 'PER_MEDICAL_ASSESSMENTS'
451: ,p_hook_type => 'AI');

Line 449: hr_api.cannot_find_prog_unit_error

445: exception
446: --
447: when hr_api.cannot_find_prog_unit then
448: --
449: hr_api.cannot_find_prog_unit_error
450: (p_module_name => 'PER_MEDICAL_ASSESSMENTS'
451: ,p_hook_type => 'AI');
452: --
453: end;