DBA Data[Home] [Help]

APPS.BEN_PDL_INS dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

328: select ben_ptd_lmt_f_s.nextval
329: from sys.dual;
330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);
333: --
334: open c1;
335: fetch c1 into p_rec.ptd_lmt_id;
336: close c1;

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

334: open c1;
335: fetch c1 into p_rec.ptd_lmt_id;
336: close c1;
337: --
338: hr_utility.set_location(' Leaving:'||l_proc, 10);
339: End pre_insert;
340: --
341: -- ----------------------------------------------------------------------------
342: -- |-----------------------------< post_insert >------------------------------|

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

379: --
380: l_proc varchar2(72) := g_package||'post_insert';
381: --
382: Begin
383: hr_utility.set_location('Entering:'||l_proc, 5);
384: --
385: --
386: -- Start of API User Hook for post_insert.
387: --

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

450: --
451: -- End of API User Hook for post_insert.
452: --
453: --
454: hr_utility.set_location(' Leaving:'||l_proc, 10);
455: End post_insert;
456: --
457: -- ----------------------------------------------------------------------------
458: -- |-------------------------------< ins_lck >--------------------------------|

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

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

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

522: --
523: p_validation_start_date := l_validation_start_date;
524: p_validation_end_date := l_validation_end_date;
525: --
526: hr_utility.set_location(' Leaving:'||l_proc, 10);
527: --
528: End ins_lck;
529: --
530: -- ----------------------------------------------------------------------------

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

541: l_validation_start_date date;
542: l_validation_end_date date;
543: --
544: Begin
545: hr_utility.set_location('Entering:'||l_proc, 5);
546: --
547: -- Call the lock operation
548: --
549: ins_lck

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

645: l_rec ben_pdl_shd.g_rec_type;
646: l_proc varchar2(72) := g_package||'ins';
647: --
648: Begin
649: hr_utility.set_location('Entering:'||l_proc, 5);
650: --
651: -- Call conversion function to turn arguments into the
652: -- p_rec structure.
653: --

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

713: p_effective_end_date := l_rec.effective_end_date;
714: p_object_version_number := l_rec.object_version_number;
715: --
716: --
717: hr_utility.set_location(' Leaving:'||l_proc, 10);
718: End ins;
719: --
720: end ben_pdl_ins;