DBA Data[Home] [Help]

APPS.BEN_PRG_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_pl_regn_f.last_updated_by%TYPE;
80: l_last_update_login ben_pl_regn_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 239: hr_utility.set_location(' Leaving:'||l_proc, 15);

235: l_last_update_login
236: );
237: --
238: ben_prg_shd.g_api_dml := false; -- Unset the api dml status
239: hr_utility.set_location(' Leaving:'||l_proc, 15);
240: --
241: Exception
242: When hr_api.check_integrity_violated Then
243: -- A check constraint has been violated

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

266: --
267: l_proc varchar2(72) := g_package||'insert_dml';
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: --
272: dt_insert_dml(p_rec => p_rec,
273: p_effective_date => p_effective_date,
274: p_datetrack_mode => p_datetrack_mode,

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

274: p_datetrack_mode => p_datetrack_mode,
275: p_validation_start_date => p_validation_start_date,
276: p_validation_end_date => p_validation_end_date);
277: --
278: hr_utility.set_location(' Leaving:'||l_proc, 10);
279: End insert_dml;
280: --
281: -- ----------------------------------------------------------------------------
282: -- |------------------------------< pre_insert >------------------------------|

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

330: select ben_pl_regn_f_s.nextval
331: from sys.dual;
332: --
333: Begin
334: hr_utility.set_location('Entering:'||l_proc, 5);
335: --
336: open c1;
337: --
338: fetch c1 into p_rec.pl_regn_id;

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

338: fetch c1 into p_rec.pl_regn_id;
339: --
340: close c1;
341: --
342: hr_utility.set_location(' Leaving:'||l_proc, 10);
343: End pre_insert;
344: --
345: -- ----------------------------------------------------------------------------
346: -- |-----------------------------< post_insert >------------------------------|

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

383: --
384: l_proc varchar2(72) := g_package||'post_insert';
385: --
386: Begin
387: hr_utility.set_location('Entering:'||l_proc, 5);
388: --
389: --
390: -- Start of API User Hook for post_insert.
391: --

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

454: end;
455: --
456: -- End of API User Hook for post_insert.
457: --
458: hr_utility.set_location(' Leaving:'||l_proc, 10);
459: End post_insert;
460: --
461: -- ----------------------------------------------------------------------------
462: -- |-------------------------------< ins_lck >--------------------------------|

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

506: l_validation_start_date date;
507: l_validation_end_date date;
508: --
509: Begin
510: hr_utility.set_location('Entering:'||l_proc, 5);
511: --
512: -- Validate the datetrack mode mode getting the validation start
513: -- and end dates for the specified datetrack operation.
514: --

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

547: --
548: p_validation_start_date := l_validation_start_date;
549: p_validation_end_date := l_validation_end_date;
550: --
551: hr_utility.set_location(' Leaving:'||l_proc, 10);
552: --
553: End ins_lck;
554: --
555: -- ----------------------------------------------------------------------------

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

566: l_validation_start_date date;
567: l_validation_end_date date;
568: --
569: Begin
570: hr_utility.set_location('Entering:'||l_proc, 5);
571: --
572: -- Call the lock operation
573: --
574: ins_lck

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

671: l_rec ben_prg_shd.g_rec_type;
672: l_proc varchar2(72) := g_package||'ins';
673: --
674: Begin
675: hr_utility.set_location('Entering:'||l_proc, 5);
676: --
677: -- Call conversion function to turn arguments into the
678: -- p_rec structure.
679: --

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

740: p_effective_end_date := l_rec.effective_end_date;
741: p_object_version_number := l_rec.object_version_number;
742: --
743: --
744: hr_utility.set_location(' Leaving:'||l_proc, 10);
745: End ins;
746: --
747: end ben_prg_ins;