DBA Data[Home] [Help]

APPS.BEN_MTR_INS dependencies on HR_API

Line 254: When hr_api.check_integrity_violated Then

250: ben_mtr_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_mtr_shd.g_api_dml := false; -- Unset the api dml status
257: ben_mtr_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_mtr_shd.g_api_dml := false; -- Unset the api dml status
257: ben_mtr_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_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_shd.constraint_error

Line 259: When hr_api.unique_integrity_violated Then

255: -- A check constraint has been violated
256: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
257: ben_mtr_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_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_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_mtr_shd.g_api_dml := false; -- Unset the api dml status
262: ben_mtr_shd.constraint_error
263: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
264: When Others Then
265: ben_mtr_shd.g_api_dml := false; -- Unset the api dml status
266: Raise;
267: End dt_insert_dml;

Line 467: when hr_api.cannot_find_prog_unit then

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

Line 469: hr_api.cannot_find_prog_unit_error

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

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

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