DBA Data[Home] [Help]

APPS.BEN_CCT_INS dependencies on HR_API

Line 292: When hr_api.check_integrity_violated Then

288: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
289: hr_utility.set_location(' Leaving:'||l_proc, 15);
290: --
291: Exception
292: When hr_api.check_integrity_violated Then
293: -- A check constraint has been violated
294: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
295: ben_cct_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

292: When hr_api.check_integrity_violated Then
293: -- A check constraint has been violated
294: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
295: ben_cct_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
300: ben_cct_shd.constraint_error

Line 297: When hr_api.unique_integrity_violated Then

293: -- A check constraint has been violated
294: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
295: ben_cct_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
300: ben_cct_shd.constraint_error
301: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
300: ben_cct_shd.constraint_error
301: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
302: When Others Then
303: ben_cct_shd.g_api_dml := false; -- Unset the api dml status
304: Raise;
305: End dt_insert_dml;

Line 502: when hr_api.cannot_find_prog_unit then

498: ,p_validation_end_date =>p_validation_end_date);
499: --
500: exception
501: --
502: when hr_api.cannot_find_prog_unit then
503: --
504: hr_api.cannot_find_prog_unit_error
505: (p_module_name => 'ben_cm_typ_f'
506: ,p_hook_type => 'AI');

Line 504: hr_api.cannot_find_prog_unit_error

500: exception
501: --
502: when hr_api.cannot_find_prog_unit then
503: --
504: hr_api.cannot_find_prog_unit_error
505: (p_module_name => 'ben_cm_typ_f'
506: ,p_hook_type => 'AI');
507: --
508: end;

Line 541: -- another user. This will raise the HR_Api.Object_Locked exception.

537: --
538: -- Post Failure:
539: -- The Lck process can fail for:
540: -- 1) When attempting to lock the row the row could already be locked by
541: -- another user. This will raise the HR_Api.Object_Locked exception.
542: -- 2) When attempting to the lock the parent which doesn't exist.
543: -- For the entity to be locked the parent must exist!
544: --
545: -- Developer Implementation Notes: