DBA Data[Home] [Help]

APPS.BEN_CTP_INS dependencies on HR_API

Line 360: When hr_api.check_integrity_violated Then

356: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
357: hr_utility.set_location(' Leaving:'||l_proc, 15);
358: --
359: Exception
360: When hr_api.check_integrity_violated Then
361: -- A check constraint has been violated
362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

360: When hr_api.check_integrity_violated Then
361: -- A check constraint has been violated
362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error

Line 365: When hr_api.unique_integrity_violated Then

361: -- A check constraint has been violated
362: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
363: ben_ctp_shd.constraint_error
364: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error
369: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

365: When hr_api.unique_integrity_violated Then
366: -- Unique integrity has been violated
367: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
368: ben_ctp_shd.constraint_error
369: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
370: When Others Then
371: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
372: Raise;
373: End dt_insert_dml;

Line 625: when hr_api.cannot_find_prog_unit then

621: );
622: --
623: exception
624: --
625: when hr_api.cannot_find_prog_unit then
626: --
627: hr_api.cannot_find_prog_unit_error
628: (p_module_name => 'ben_ptip_f'
629: ,p_hook_type => 'AI');

Line 627: hr_api.cannot_find_prog_unit_error

623: exception
624: --
625: when hr_api.cannot_find_prog_unit then
626: --
627: hr_api.cannot_find_prog_unit_error
628: (p_module_name => 'ben_ptip_f'
629: ,p_hook_type => 'AI');
630: --
631: end;

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

660: --
661: -- Post Failure:
662: -- The Lck process can fail for:
663: -- 1) When attempting to lock the row the row could already be locked by
664: -- another user. This will raise the HR_Api.Object_Locked exception.
665: -- 2) When attempting to the lock the parent which doesn't exist.
666: -- For the entity to be locked the parent must exist!
667: --
668: -- Developer Implementation Notes: