DBA Data[Home] [Help]

APPS.BEN_ABR_INS dependencies on HR_API

Line 795: When hr_api.check_integrity_violated Then

791: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
792: hr_utility.set_location(' Leaving:'||l_proc, 15);
793: --
794: Exception
795: When hr_api.check_integrity_violated Then
796: -- A check constraint has been violated
797: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
798: ben_abr_shd.constraint_error
799: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

795: When hr_api.check_integrity_violated Then
796: -- A check constraint has been violated
797: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
798: ben_abr_shd.constraint_error
799: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
800: When hr_api.unique_integrity_violated Then
801: -- Unique integrity has been violated
802: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
803: ben_abr_shd.constraint_error

Line 800: When hr_api.unique_integrity_violated Then

796: -- A check constraint has been violated
797: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
798: ben_abr_shd.constraint_error
799: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
800: When hr_api.unique_integrity_violated Then
801: -- Unique integrity has been violated
802: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
803: ben_abr_shd.constraint_error
804: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

800: When hr_api.unique_integrity_violated Then
801: -- Unique integrity has been violated
802: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
803: ben_abr_shd.constraint_error
804: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
805: When Others Then
806: ben_abr_shd.g_api_dml := false; -- Unset the api dml status
807: Raise;
808: End dt_insert_dml;

Line 1188: when hr_api.cannot_find_prog_unit then

1184: );
1185: --
1186: exception
1187: --
1188: when hr_api.cannot_find_prog_unit then
1189: --
1190: hr_api.cannot_find_prog_unit_error
1191: (p_module_name => 'ben_acty_base_rt_f'
1192: ,p_hook_type => 'AI');

Line 1190: hr_api.cannot_find_prog_unit_error

1186: exception
1187: --
1188: when hr_api.cannot_find_prog_unit then
1189: --
1190: hr_api.cannot_find_prog_unit_error
1191: (p_module_name => 'ben_acty_base_rt_f'
1192: ,p_hook_type => 'AI');
1193: --
1194: end;

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

1222: --
1223: -- Post Failure:
1224: -- The Lck process can fail for:
1225: -- 1) When attempting to lock the row the row could already be locked by
1226: -- another user. This will raise the HR_Api.Object_Locked exception.
1227: -- 2) When attempting to the lock the parent which doesn't exist.
1228: -- For the entity to be locked the parent must exist!
1229: --
1230: -- Developer Implementation Notes: