DBA Data[Home] [Help]

APPS.PAY_CFT_INS dependencies on HR_API

Line 262: When hr_api.check_integrity_violated Then

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

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

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

Line 267: When hr_api.unique_integrity_violated Then

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

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

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

Line 478: when hr_api.cannot_find_prog_unit then

474: );
475: --
476: exception
477: --
478: when hr_api.cannot_find_prog_unit then
479: --
480: hr_api.cannot_find_prog_unit_error
481: (p_module_name => 'pay_ca_emp_fed_tax_info_f'
482: ,p_hook_type => 'AI');

Line 480: hr_api.cannot_find_prog_unit_error

476: exception
477: --
478: when hr_api.cannot_find_prog_unit then
479: --
480: hr_api.cannot_find_prog_unit_error
481: (p_module_name => 'pay_ca_emp_fed_tax_info_f'
482: ,p_hook_type => 'AI');
483: --
484: end;

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

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