DBA Data[Home] [Help]

APPS.BEN_APR_INS dependencies on HR_API

Line 288: When hr_api.check_integrity_violated Then

284: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
285: hr_utility.set_location(' Leaving:'||l_proc, 15);
286: --
287: Exception
288: When hr_api.check_integrity_violated Then
289: -- A check constraint has been violated
290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

288: When hr_api.check_integrity_violated Then
289: -- A check constraint has been violated
290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error

Line 293: When hr_api.unique_integrity_violated Then

289: -- A check constraint has been violated
290: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
291: ben_apr_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error
297: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

293: When hr_api.unique_integrity_violated Then
294: -- Unique integrity has been violated
295: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
296: ben_apr_shd.constraint_error
297: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
298: When Others Then
299: ben_apr_shd.g_api_dml := false; -- Unset the api dml status
300: Raise;
301: End dt_insert_dml;

Line 517: when hr_api.cannot_find_prog_unit then

513: );
514: --
515: exception
516: --
517: when hr_api.cannot_find_prog_unit then
518: --
519: hr_api.cannot_find_prog_unit_error
520: (p_module_name => 'ben_actl_prem_f'
521: ,p_hook_type => 'AI');

Line 519: hr_api.cannot_find_prog_unit_error

515: exception
516: --
517: when hr_api.cannot_find_prog_unit then
518: --
519: hr_api.cannot_find_prog_unit_error
520: (p_module_name => 'ben_actl_prem_f'
521: ,p_hook_type => 'AI');
522: --
523: end;

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

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