DBA Data[Home] [Help]

APPS.BEN_BPP_INS dependencies on HR_API

Line 292: When hr_api.check_integrity_violated Then

288: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
289: hr_utility.set_location(' Leaving:'||l_proc, 15);
290: --
291: Exception
292: When hr_api.check_integrity_violated Then
293: -- A check constraint has been violated
294: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
295: ben_bpp_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

292: When hr_api.check_integrity_violated Then
293: -- A check constraint has been violated
294: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
295: ben_bpp_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
300: ben_bpp_shd.constraint_error

Line 297: When hr_api.unique_integrity_violated Then

293: -- A check constraint has been violated
294: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
295: ben_bpp_shd.constraint_error
296: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
300: ben_bpp_shd.constraint_error
301: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

297: When hr_api.unique_integrity_violated Then
298: -- Unique integrity has been violated
299: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
300: ben_bpp_shd.constraint_error
301: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
302: When Others Then
303: ben_bpp_shd.g_api_dml := false; -- Unset the api dml status
304: Raise;
305: End dt_insert_dml;

Line 519: when hr_api.cannot_find_prog_unit then

515: );
516: --
517: exception
518: --
519: when hr_api.cannot_find_prog_unit then
520: --
521: hr_api.cannot_find_prog_unit_error
522: (p_module_name => 'ben_bnft_prvdr_pool_f'
523: ,p_hook_type => 'AI');

Line 521: hr_api.cannot_find_prog_unit_error

517: exception
518: --
519: when hr_api.cannot_find_prog_unit then
520: --
521: hr_api.cannot_find_prog_unit_error
522: (p_module_name => 'ben_bnft_prvdr_pool_f'
523: ,p_hook_type => 'AI');
524: --
525: end;

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

554: --
555: -- Post Failure:
556: -- The Lck process can fail for:
557: -- 1) When attempting to lock the row the row could already be locked by
558: -- another user. This will raise the HR_Api.Object_Locked exception.
559: -- 2) When attempting to the lock the parent which doesn't exist.
560: -- For the entity to be locked the parent must exist!
561: --
562: -- Developer Implementation Notes: