DBA Data[Home] [Help]

APPS.PAY_CFT_INS dependencies on HR_API

Line 266: When hr_api.check_integrity_violated Then

262: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
263: hr_utility.set_location(' Leaving:'||l_proc, 15);
264: --
265: Exception
266: When hr_api.check_integrity_violated Then
267: -- A check constraint has been violated
268: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
269: pay_cft_shd.constraint_error
270: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

266: When hr_api.check_integrity_violated Then
267: -- A check constraint has been violated
268: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
269: pay_cft_shd.constraint_error
270: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
271: When hr_api.unique_integrity_violated Then
272: -- Unique integrity has been violated
273: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
274: pay_cft_shd.constraint_error

Line 271: When hr_api.unique_integrity_violated Then

267: -- A check constraint has been violated
268: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
269: pay_cft_shd.constraint_error
270: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
271: When hr_api.unique_integrity_violated Then
272: -- Unique integrity has been violated
273: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
274: pay_cft_shd.constraint_error
275: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

271: When hr_api.unique_integrity_violated Then
272: -- Unique integrity has been violated
273: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
274: pay_cft_shd.constraint_error
275: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
276: When Others Then
277: pay_cft_shd.g_api_dml := false; -- Unset the api dml status
278: Raise;
279: End dt_insert_dml;

Line 484: when hr_api.cannot_find_prog_unit then

480: );
481: --
482: exception
483: --
484: when hr_api.cannot_find_prog_unit then
485: --
486: hr_api.cannot_find_prog_unit_error
487: (p_module_name => 'pay_ca_emp_fed_tax_info_f'
488: ,p_hook_type => 'AI');

Line 486: hr_api.cannot_find_prog_unit_error

482: exception
483: --
484: when hr_api.cannot_find_prog_unit then
485: --
486: hr_api.cannot_find_prog_unit_error
487: (p_module_name => 'pay_ca_emp_fed_tax_info_f'
488: ,p_hook_type => 'AI');
489: --
490: end;

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

519: --
520: -- Post Failure:
521: -- The Lck process can fail for:
522: -- 1) When attempting to lock the row the row could already be locked by
523: -- another user. This will raise the HR_Api.Object_Locked exception.
524: -- 2) When attempting to the lock the parent which doesn't exist.
525: -- For the entity to be locked the parent must exist<>
526: --
527: -- Developer Implementation Notes: