DBA Data[Home] [Help]

APPS.BEN_EPO_INS dependencies on HR_API

Line 329: When hr_api.check_integrity_violated Then

325: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
326: hr_utility.set_location(' Leaving:'||l_proc, 15);
327: --
328: Exception
329: When hr_api.check_integrity_violated Then
330: -- A check constraint has been violated
331: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
332: ben_epo_shd.constraint_error
333: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

329: When hr_api.check_integrity_violated Then
330: -- A check constraint has been violated
331: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
332: ben_epo_shd.constraint_error
333: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
334: When hr_api.unique_integrity_violated Then
335: -- Unique integrity has been violated
336: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
337: ben_epo_shd.constraint_error

Line 334: When hr_api.unique_integrity_violated Then

330: -- A check constraint has been violated
331: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
332: ben_epo_shd.constraint_error
333: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
334: When hr_api.unique_integrity_violated Then
335: -- Unique integrity has been violated
336: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
337: ben_epo_shd.constraint_error
338: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

334: When hr_api.unique_integrity_violated Then
335: -- Unique integrity has been violated
336: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
337: ben_epo_shd.constraint_error
338: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
339: When Others Then
340: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
341: Raise;
342: End dt_insert_dml;

Line 579: when hr_api.cannot_find_prog_unit then

575: );
576: --
577: exception
578: --
579: when hr_api.cannot_find_prog_unit then
580: --
581: hr_api.cannot_find_prog_unit_error
582: (p_module_name => 'ben_elig_per_opt_f'
583: ,p_hook_type => 'AI');

Line 581: hr_api.cannot_find_prog_unit_error

577: exception
578: --
579: when hr_api.cannot_find_prog_unit then
580: --
581: hr_api.cannot_find_prog_unit_error
582: (p_module_name => 'ben_elig_per_opt_f'
583: ,p_hook_type => 'AI');
584: --
585: end;

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

614: --
615: -- Post Failure:
616: -- The Lck process can fail for:
617: -- 1) When attempting to lock the row the row could already be locked by
618: -- another user. This will raise the HR_Api.Object_Locked exception.
619: -- 2) When attempting to the lock the parent which doesn't exist.
620: -- For the entity to be locked the parent must exist!
621: --
622: -- Developer Implementation Notes: