DBA Data[Home] [Help]

APPS.HR_CLE_INS dependencies on HR_API

Line 125: If (p_datetrack_mode <> hr_api.g_insert) then

121: --
122: -- If the datetrack_mode is not INSERT then we must populate the WHO
123: -- columns with the 'old' creation values and 'new' updated values.
124: --
125: If (p_datetrack_mode <> hr_api.g_insert) then
126: hr_utility.set_location(l_proc, 10);
127: --
128: -- Select the 'old' created values
129: --

Line 283: When hr_api.check_integrity_violated Then

279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 15);
281: --
282: Exception
283: When hr_api.check_integrity_violated Then
284: -- A check constraint has been violated
285: --
286: hr_cle_shd.constraint_error
287: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

283: When hr_api.check_integrity_violated Then
284: -- A check constraint has been violated
285: --
286: hr_cle_shd.constraint_error
287: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
288: When hr_api.unique_integrity_violated Then
289: -- Unique integrity has been violated
290: --
291: hr_cle_shd.constraint_error

Line 288: When hr_api.unique_integrity_violated Then

284: -- A check constraint has been violated
285: --
286: hr_cle_shd.constraint_error
287: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
288: When hr_api.unique_integrity_violated Then
289: -- Unique integrity has been violated
290: --
291: hr_cle_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

288: When hr_api.unique_integrity_violated Then
289: -- Unique integrity has been violated
290: --
291: hr_cle_shd.constraint_error
292: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
293: When Others Then
294: --
295: Raise;
296: End dt_insert_dml;

Line 589: when hr_api.cannot_find_prog_unit then

585: );
586: --
587: exception
588: --
589: when hr_api.cannot_find_prog_unit then
590: --
591: hr_api.cannot_find_prog_unit_error
592: (p_module_name => 'HR_DE_SOC_INS_CONTR_LVLS_F'
593: ,p_hook_type => 'AI');

Line 591: hr_api.cannot_find_prog_unit_error

587: exception
588: --
589: when hr_api.cannot_find_prog_unit then
590: --
591: hr_api.cannot_find_prog_unit_error
592: (p_module_name => 'HR_DE_SOC_INS_CONTR_LVLS_F'
593: ,p_hook_type => 'AI');
594: --
595: end;

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

620: --
621: -- Post Failure:
622: -- The Lck process can fail for:
623: -- 1) When attempting to lock the row the row could already be locked by
624: -- another user. This will raise the HR_Api.Object_Locked exception.
625: -- 2) When attempting to the lock the parent which doesn't exist.
626: -- For the entity to be locked the parent must exist!
627: --
628: -- Developer Implementation Notes:

Line 683: l_datetrack_mode varchar2(30) := hr_api.g_insert;

679: ,p_rec in out nocopy hr_cle_shd.g_rec_type
680: ) is
681: --
682: l_proc varchar2(72) := g_package||'ins';
683: l_datetrack_mode varchar2(30) := hr_api.g_insert;
684: l_validation_start_date date;
685: l_validation_end_date date;
686: --
687: Begin