DBA Data[Home] [Help]

APPS.BEN_VEP_INS dependencies on HR_UTILITY

Line 83: hr_utility.set_location('Entering:'||l_proc, 5);

79: l_last_updated_by BEN_VRBL_RT_ELIG_PRFL_f.last_updated_by%TYPE;
80: l_last_update_login BEN_VRBL_RT_ELIG_PRFL_f.last_update_login%TYPE;
81: --
82: Begin
83: hr_utility.set_location('Entering:'||l_proc, 5);
84: --
85: -- Get the object version number for the insert
86: --
87: p_rec.object_version_number :=

Line 104: hr_utility.set_location(l_proc, 10);

100: -- If the datetrack_mode is not INSERT then we must populate the WHO
101: -- columns with the 'old' creation values and 'new' updated values.
102: --
103: If (p_datetrack_mode <> hr_api.g_insert) then
104: hr_utility.set_location(l_proc, 10);
105: --
106: -- Select the 'old' created values
107: --
108: Open C_Sel1;

Line 228: hr_utility.set_location(' Leaving:'||l_proc, 15);

224: ,l_last_update_login
225: );
226: --
227: ben_vep_shd.g_api_dml := false; -- Unset the api dml status
228: hr_utility.set_location(' Leaving:'||l_proc, 15);
229: --
230: Exception
231: When hr_api.check_integrity_violated Then
232: -- A check constraint has been violated

Line 260: hr_utility.set_location('Entering:'||l_proc, 5);

256: --
257: l_proc varchar2(72) := g_package||'insert_dml';
258: --
259: Begin
260: hr_utility.set_location('Entering:'||l_proc, 5);
261: --
262: ben_vep_ins.dt_insert_dml
263: (p_rec => p_rec
264: ,p_effective_date => p_effective_date

Line 270: hr_utility.set_location(' Leaving:'||l_proc, 10);

266: ,p_validation_start_date => p_validation_start_date
267: ,p_validation_end_date => p_validation_end_date
268: );
269: --
270: hr_utility.set_location(' Leaving:'||l_proc, 10);
271: End insert_dml;
272: --
273: -- ----------------------------------------------------------------------------
274: -- |------------------------------< pre_insert >------------------------------|

Line 325: hr_utility.set_location('Entering:'||l_proc, 5);

321: --
322: Cursor C_Sel1 is select BEN_VRBL_RT_ELIG_PRFL_s.nextval from sys.dual;
323: --
324: Begin
325: hr_utility.set_location('Entering:'||l_proc, 5);
326: --
327: --
328: -- Select the next sequence number
329: --

Line 335: hr_utility.set_location(' Leaving:'||l_proc, 10);

331: Fetch C_Sel1 Into p_rec.vrbl_rt_elig_prfl_id;
332: Close C_Sel1;
333: --
334: --
335: hr_utility.set_location(' Leaving:'||l_proc, 10);
336: End pre_insert;
337: --
338: -- ----------------------------------------------------------------------------
339: -- |----------------------------< post_insert >-------------------------------|

Line 381: hr_utility.set_location('Entering:'||l_proc, 5);

377: --
378: l_proc varchar2(72) := g_package||'post_insert';
379: --
380: Begin
381: hr_utility.set_location('Entering:'||l_proc, 5);
382: begin
383: --
384: ben_vep_rki.after_insert
385: (p_effective_date

Line 481: hr_utility.set_location(' Leaving:'||l_proc, 10);

477: ,p_hook_type => 'AI');
478: --
479: end;
480: --
481: hr_utility.set_location(' Leaving:'||l_proc, 10);
482: End post_insert;
483: --
484: -- ----------------------------------------------------------------------------
485: -- |-------------------------------< ins_lck >--------------------------------|

Line 533: hr_utility.set_location('Entering:'||l_proc, 5);

529: l_validation_start_date date;
530: l_validation_end_date date;
531: --
532: Begin
533: hr_utility.set_location('Entering:'||l_proc, 5);
534: --
535: -- Validate the datetrack mode mode getting the validation start
536: -- and end dates for the specified datetrack operation.
537: --

Line 560: hr_utility.set_location(' Leaving:'||l_proc, 10);

556: --
557: p_validation_start_date := l_validation_start_date;
558: p_validation_end_date := l_validation_end_date;
559: --
560: hr_utility.set_location(' Leaving:'||l_proc, 10);
561: --
562: End ins_lck;
563: --
564: -- ----------------------------------------------------------------------------

Line 578: hr_utility.set_location('Entering:'||l_proc, 5);

574: l_validation_start_date date;
575: l_validation_end_date date;
576: --
577: Begin
578: hr_utility.set_location('Entering:'||l_proc, 5);
579: --
580: -- Call the lock operation
581: --
582: ben_vep_ins.ins_lck

Line 630: hr_utility.set_location('Leaving:'||l_proc,10);

626: ,p_validation_start_date => l_validation_start_date
627: ,p_validation_end_date => l_validation_end_date
628: );
629: --
630: hr_utility.set_location('Leaving:'||l_proc,10);
631: end ins;
632: --
633: -- ----------------------------------------------------------------------------
634: -- |---------------------------------< ins >----------------------------------|

Line 683: hr_utility.set_location('Entering:'||l_proc, 5);

679: l_rec ben_vep_shd.g_rec_type;
680: l_proc varchar2(72) := g_package||'ins';
681: --
682: Begin
683: hr_utility.set_location('Entering:'||l_proc, 5);
684: --
685: -- Call conversion function to turn arguments into the
686: -- p_rec structure.
687: --

Line 748: hr_utility.set_location(' Leaving:'||l_proc, 10);

744: p_effective_end_date := l_rec.effective_end_date;
745: p_object_version_number := l_rec.object_version_number;
746: --
747: --
748: hr_utility.set_location(' Leaving:'||l_proc, 10);
749: End ins;
750: --
751: end ben_vep_ins;