DBA Data[Home] [Help]

APPS.BEN_PLN_INS dependencies on HR_API

Line 530: When hr_api.check_integrity_violated Then

526: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
527: hr_utility.set_location(' Leaving:'||l_proc, 15);
528: --
529: Exception
530: When hr_api.check_integrity_violated Then
531: -- A check constraint has been violated
532: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
533: ben_pln_shd.constraint_error
534: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

530: When hr_api.check_integrity_violated Then
531: -- A check constraint has been violated
532: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
533: ben_pln_shd.constraint_error
534: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
535: When hr_api.unique_integrity_violated Then
536: -- Unique integrity has been violated
537: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
538: ben_pln_shd.constraint_error

Line 535: When hr_api.unique_integrity_violated Then

531: -- A check constraint has been violated
532: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
533: ben_pln_shd.constraint_error
534: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
535: When hr_api.unique_integrity_violated Then
536: -- Unique integrity has been violated
537: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
538: ben_pln_shd.constraint_error
539: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

535: When hr_api.unique_integrity_violated Then
536: -- Unique integrity has been violated
537: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
538: ben_pln_shd.constraint_error
539: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
540: When Others Then
541: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
542: Raise;
543: End dt_insert_dml;

Line 936: when hr_api.cannot_find_prog_unit then

932: );
933: --
934: exception
935: --
936: when hr_api.cannot_find_prog_unit then
937: --
938: hr_api.cannot_find_prog_unit_error
939: (p_module_name => 'ben_pl_f'
940: ,p_hook_type => 'AI');

Line 938: hr_api.cannot_find_prog_unit_error

934: exception
935: --
936: when hr_api.cannot_find_prog_unit then
937: --
938: hr_api.cannot_find_prog_unit_error
939: (p_module_name => 'ben_pl_f'
940: ,p_hook_type => 'AI');
941: --
942: end;

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

970: --
971: -- Post Failure:
972: -- The Lck process can fail for:
973: -- 1) When attempting to lock the row the row could already be locked by
974: -- another user. This will raise the HR_Api.Object_Locked exception.
975: -- 2) When attempting to the lock the parent which doesn't exist.
976: -- For the entity to be locked the parent must exist!
977: --
978: -- Developer Implementation Notes: