DBA Data[Home] [Help]

APPS.BEN_DPNT_EDC_INS dependencies on HR_API

Line 258: When hr_api.check_integrity_violated Then

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

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

258: When hr_api.check_integrity_violated Then
259: -- A check constraint has been violated
260: ben_dpnt_edc_shd.g_api_dml := false; -- Unset the api dml status
261: ben_dpnt_edc_shd.constraint_error
262: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
263: When hr_api.unique_integrity_violated Then
264: -- Unique integrity has been violated
265: ben_dpnt_edc_shd.g_api_dml := false; -- Unset the api dml status
266: ben_dpnt_edc_shd.constraint_error

Line 263: When hr_api.unique_integrity_violated Then

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

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

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

Line 471: when hr_api.cannot_find_prog_unit then

467: );
468: --
469: exception
470: --
471: when hr_api.cannot_find_prog_unit then
472: --
473: hr_api.cannot_find_prog_unit_error
474: (p_module_name => 'ben_dpnt_eligy_crit_values_f'
475: ,p_hook_type => 'AI');

Line 473: hr_api.cannot_find_prog_unit_error

469: exception
470: --
471: when hr_api.cannot_find_prog_unit then
472: --
473: hr_api.cannot_find_prog_unit_error
474: (p_module_name => 'ben_dpnt_eligy_crit_values_f'
475: ,p_hook_type => 'AI');
476: --
477: end;

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

506: --
507: -- Post Failure:
508: -- The Lck process can fail for:
509: -- 1) When attempting to lock the row the row could already be locked by
510: -- another user. This will raise the HR_Api.Object_Locked exception.
511: -- 2) When attempting to the lock the parent which doesn't exist.
512: -- For the entity to be locked the parent must exist!
513: --
514: -- Developer Implementation Notes: