DBA Data[Home] [Help]

APPS.BEN_REG_INS dependencies on HR_API

Line 268: When hr_api.check_integrity_violated Then

264: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
265: hr_utility.set_location(' Leaving:'||l_proc, 15);
266: --
267: Exception
268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

268: When hr_api.check_integrity_violated Then
269: -- A check constraint has been violated
270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error

Line 273: When hr_api.unique_integrity_violated Then

269: -- A check constraint has been violated
270: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
271: ben_reg_shd.constraint_error
272: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

273: When hr_api.unique_integrity_violated Then
274: -- Unique integrity has been violated
275: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
276: ben_reg_shd.constraint_error
277: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
278: When Others Then
279: ben_reg_shd.g_api_dml := false; -- Unset the api dml status
280: Raise;
281: End dt_insert_dml;

Line 469: when hr_api.cannot_find_prog_unit then

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

Line 471: hr_api.cannot_find_prog_unit_error

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

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

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