DBA Data[Home] [Help]

APPS.BEN_DCE_INS dependencies on HR_API

Line 254: When hr_api.check_integrity_violated Then

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

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

254: When hr_api.check_integrity_violated Then
255: -- A check constraint has been violated
256: ben_dce_shd.g_api_dml := false; -- Unset the api dml status
257: ben_dce_shd.constraint_error
258: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
259: When hr_api.unique_integrity_violated Then
260: -- Unique integrity has been violated
261: ben_dce_shd.g_api_dml := false; -- Unset the api dml status
262: ben_dce_shd.constraint_error

Line 259: When hr_api.unique_integrity_violated Then

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

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

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

Line 468: when hr_api.cannot_find_prog_unit then

464: );
465: --
466: exception
467: --
468: when hr_api.cannot_find_prog_unit then
469: --
470: hr_api.cannot_find_prog_unit_error
471: (p_module_name => 'ben_dpnt_cvg_eligy_prfl_f'
472: ,p_hook_type => 'AI');

Line 470: hr_api.cannot_find_prog_unit_error

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

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

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