DBA Data[Home] [Help]

APPS.PAY_FED_INS dependencies on HR_API

Line 325: When hr_api.check_integrity_violated Then

321: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
322: hr_utility.set_location(' Leaving:'||l_proc, 15);
323: --
324: Exception
325: When hr_api.check_integrity_violated Then
326: -- A check constraint has been violated
327: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
328: pay_fed_shd.constraint_error
329: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

325: When hr_api.check_integrity_violated Then
326: -- A check constraint has been violated
327: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
328: pay_fed_shd.constraint_error
329: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
330: When hr_api.unique_integrity_violated Then
331: -- Unique integrity has been violated
332: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
333: pay_fed_shd.constraint_error

Line 330: When hr_api.unique_integrity_violated Then

326: -- A check constraint has been violated
327: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
328: pay_fed_shd.constraint_error
329: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
330: When hr_api.unique_integrity_violated Then
331: -- Unique integrity has been violated
332: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
333: pay_fed_shd.constraint_error
334: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

330: When hr_api.unique_integrity_violated Then
331: -- Unique integrity has been violated
332: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
333: pay_fed_shd.constraint_error
334: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
335: When Others Then
336: pay_fed_shd.g_api_dml := false; -- Unset the api dml status
337: Raise;
338: End dt_insert_dml;

Line 511: when hr_api.cannot_find_prog_unit then

507: );
508: --
509: exception
510: --
511: when hr_api.cannot_find_prog_unit then
512: --
513: hr_api.cannot_find_prog_unit_error
514: (p_module_name => 'PAY_US_EMP_FED_TAX_RULES_F
515: ,p_hook_type => 'AI');

Line 513: hr_api.cannot_find_prog_unit_error

509: exception
510: --
511: when hr_api.cannot_find_prog_unit then
512: --
513: hr_api.cannot_find_prog_unit_error
514: (p_module_name => 'PAY_US_EMP_FED_TAX_RULES_F
515: ,p_hook_type => 'AI');
516: --
517: */

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

549: --
550: -- Post Failure:
551: -- The Lck process can fail for:
552: -- 1) When attempting to lock the row the row could already be locked by
553: -- another user. This will raise the HR_Api.Object_Locked exception.
554: -- 2) When attempting to the lock the parent which doesn't exist.
555: -- For the entity to be locked the parent must exist!
556: --
557: -- Developer Implementation Notes: