DBA Data[Home] [Help]

APPS.BEN_PCM_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_per_cm_f.last_updated_by%TYPE;
80: l_last_update_login ben_per_cm_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_pcm_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 343: hr_utility.set_location('Entering:'||l_proc, 5);

339: from dual;
340: --
341: --
342: Begin
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: --
345: --
346: open c1;
347: fetch c1 into p_rec.per_cm_id;

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

346: open c1;
347: fetch c1 into p_rec.per_cm_id;
348: close c1;
349:
350: hr_utility.set_location(' Leaving:'||l_proc, 10);
351: End pre_insert;
352: --
353: -- ----------------------------------------------------------------------------
354: -- |-----------------------------< post_insert >------------------------------|

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

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

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

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

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

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

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

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

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

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

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

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

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

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