DBA Data[Home] [Help]

APPS.BEN_PRD_INS dependencies on HR_API

Line 254: When hr_api.check_integrity_violated Then

250: ben_prd_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_prd_shd.g_api_dml := false; -- Unset the api dml status
257: ben_prd_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_prd_shd.g_api_dml := false; -- Unset the api dml status
257: ben_prd_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_prd_shd.g_api_dml := false; -- Unset the api dml status
262: ben_prd_shd.constraint_error

Line 259: When hr_api.unique_integrity_violated Then

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

Line 466: when hr_api.cannot_find_prog_unit then

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

Line 468: hr_api.cannot_find_prog_unit_error

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

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

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