DBA Data[Home] [Help]

APPS.BEN_LDC_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_ler_chg_dpnt_cvg_f.last_updated_by%TYPE;
80: l_last_update_login ben_ler_chg_dpnt_cvg_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 103: hr_utility.set_location(l_proc, 10);

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

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

243: l_last_update_login
244: );
245: --
246: ben_ldc_shd.g_api_dml := false; -- Unset the api dml status
247: hr_utility.set_location(' Leaving:'||l_proc, 15);
248: --
249: Exception
250: When hr_api.check_integrity_violated Then
251: -- A check constraint has been violated

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

274: --
275: l_proc varchar2(72) := g_package||'insert_dml';
276: --
277: Begin
278: hr_utility.set_location('Entering:'||l_proc, 5);
279: --
280: dt_insert_dml(p_rec => p_rec,
281: p_effective_date => p_effective_date,
282: p_datetrack_mode => p_datetrack_mode,

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

282: p_datetrack_mode => p_datetrack_mode,
283: p_validation_start_date => p_validation_start_date,
284: p_validation_end_date => p_validation_end_date);
285: --
286: hr_utility.set_location(' Leaving:'||l_proc, 10);
287: End insert_dml;
288: --
289: -- ----------------------------------------------------------------------------
290: -- |------------------------------< pre_insert >------------------------------|

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

337: Cursor C_Sel1 is select ben_ler_chg_dpnt_cvg_f_s.nextval from sys.dual;
338: --
339: --
340: Begin
341: hr_utility.set_location('Entering:'||l_proc, 5);
342: --
343: -- Select the next sequence number
344: --
345: Open C_Sel1;

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

345: Open C_Sel1;
346: Fetch C_Sel1 Into p_rec.ler_chg_dpnt_cvg_id;
347: Close C_Sel1;
348: -- --
349: hr_utility.set_location(' Leaving:'||l_proc, 10);
350: End pre_insert;
351: --
352: -- ----------------------------------------------------------------------------
353: -- |-----------------------------< post_insert >------------------------------|

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

390: --
391: l_proc varchar2(72) := g_package||'post_insert';
392: --
393: Begin
394: hr_utility.set_location('Entering:'||l_proc, 5);
395: --
396: --
397: -- Start of API User Hook for post_insert.
398: --

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

466: --
467: -- End of API User Hook for post_insert.
468: --
469: --
470: hr_utility.set_location(' Leaving:'||l_proc, 10);
471: End post_insert;
472: --
473: -- ----------------------------------------------------------------------------
474: -- |-------------------------------< ins_lck >--------------------------------|

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

518: l_validation_start_date date;
519: l_validation_end_date date;
520: --
521: Begin
522: hr_utility.set_location('Entering:'||l_proc, 5);
523: --
524: -- Validate the datetrack mode mode getting the validation start
525: -- and end dates for the specified datetrack operation.
526: --

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

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

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

578: l_validation_start_date date;
579: l_validation_end_date date;
580: --
581: Begin
582: hr_utility.set_location('Entering:'||l_proc, 5);
583: --
584: -- Call the lock operation
585: --
586: ins_lck

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

687: l_rec ben_ldc_shd.g_rec_type;
688: l_proc varchar2(72) := g_package||'ins';
689: --
690: Begin
691: hr_utility.set_location('Entering:'||l_proc, 5);
692: --
693: -- Call conversion function to turn arguments into the
694: -- p_rec structure.
695: --

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

760: p_effective_end_date := l_rec.effective_end_date;
761: p_object_version_number := l_rec.object_version_number;
762: --
763: --
764: hr_utility.set_location(' Leaving:'||l_proc, 10);
765: End ins;
766: --
767: end ben_ldc_ins;