DBA Data[Home] [Help]

APPS.BEN_PLN_INS dependencies on HR_API

Line 534: When hr_api.check_integrity_violated Then

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

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

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

Line 539: When hr_api.unique_integrity_violated Then

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

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

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

Line 941: when hr_api.cannot_find_prog_unit then

937: );
938: --
939: exception
940: --
941: when hr_api.cannot_find_prog_unit then
942: --
943: hr_api.cannot_find_prog_unit_error
944: (p_module_name => 'ben_pl_f'
945: ,p_hook_type => 'AI');

Line 943: hr_api.cannot_find_prog_unit_error

939: exception
940: --
941: when hr_api.cannot_find_prog_unit then
942: --
943: hr_api.cannot_find_prog_unit_error
944: (p_module_name => 'ben_pl_f'
945: ,p_hook_type => 'AI');
946: --
947: end;

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

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