DBA Data[Home] [Help]

APPS.BEN_CPP_INS dependencies on HR_API

Line 342: When hr_api.check_integrity_violated Then

338: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
339: hr_utility.set_location(' Leaving:'||l_proc, 15);
340: --
341: Exception
342: When hr_api.check_integrity_violated Then
343: -- A check constraint has been violated
344: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
345: ben_cpp_shd.constraint_error
346: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

342: When hr_api.check_integrity_violated Then
343: -- A check constraint has been violated
344: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
345: ben_cpp_shd.constraint_error
346: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
347: When hr_api.unique_integrity_violated Then
348: -- Unique integrity has been violated
349: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
350: ben_cpp_shd.constraint_error

Line 347: When hr_api.unique_integrity_violated Then

343: -- A check constraint has been violated
344: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
345: ben_cpp_shd.constraint_error
346: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
347: When hr_api.unique_integrity_violated Then
348: -- Unique integrity has been violated
349: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
350: ben_cpp_shd.constraint_error
351: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

347: When hr_api.unique_integrity_violated Then
348: -- Unique integrity has been violated
349: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
350: ben_cpp_shd.constraint_error
351: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
352: When Others Then
353: ben_cpp_shd.g_api_dml := false; -- Unset the api dml status
354: Raise;
355: End dt_insert_dml;

Line 610: when hr_api.cannot_find_prog_unit then

606: );
607: --
608: exception
609: --
610: when hr_api.cannot_find_prog_unit then
611: --
612: hr_api.cannot_find_prog_unit_error
613: (p_module_name => 'ben_plip_f'
614: ,p_hook_type => 'AI');

Line 612: hr_api.cannot_find_prog_unit_error

608: exception
609: --
610: when hr_api.cannot_find_prog_unit then
611: --
612: hr_api.cannot_find_prog_unit_error
613: (p_module_name => 'ben_plip_f'
614: ,p_hook_type => 'AI');
615: --
616: end;

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

645: --
646: -- Post Failure:
647: -- The Lck process can fail for:
648: -- 1) When attempting to lock the row the row could already be locked by
649: -- another user. This will raise the HR_Api.Object_Locked exception.
650: -- 2) When attempting to the lock the parent which doesn't exist.
651: -- For the entity to be locked the parent must exist!
652: --
653: -- Developer Implementation Notes: