DBA Data[Home] [Help]

APPS.BEN_CCT_INS dependencies on HR_API

Line 294: When hr_api.check_integrity_violated Then

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

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

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

Line 299: When hr_api.unique_integrity_violated Then

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

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

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

Line 505: when hr_api.cannot_find_prog_unit then

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

Line 507: hr_api.cannot_find_prog_unit_error

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

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

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