DBA Data[Home] [Help]

APPS.BEN_PPE_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_prtt_prem_f.last_updated_by%TYPE;
80: l_last_update_login ben_prtt_prem_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_ppe_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 332: hr_utility.set_location('Entering:'||l_proc, 5);

328: --
329: Cursor C_Sel1 is select ben_prtt_prem_f_s.nextval from sys.dual;
330: --
331: Begin
332: hr_utility.set_location('Entering:'||l_proc, 5);
333: --
334: --
335: -- Select the next sequence number
336: --

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

338: Fetch C_Sel1 Into p_rec.prtt_prem_id;
339: Close C_Sel1;
340: --
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 459: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

536: --
537: p_validation_start_date := l_validation_start_date;
538: p_validation_end_date := l_validation_end_date;
539: --
540: hr_utility.set_location(' Leaving:'||l_proc, 10);
541: --
542: End ins_lck;
543: --
544: -- ----------------------------------------------------------------------------

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

555: l_validation_start_date date;
556: l_validation_end_date date;
557: --
558: Begin
559: hr_utility.set_location('Entering:'||l_proc, 5);
560: --
561: -- Call the lock operation
562: --
563: ins_lck

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

660: l_rec ben_ppe_shd.g_rec_type;
661: l_proc varchar2(72) := g_package||'ins';
662: --
663: Begin
664: hr_utility.set_location('Entering:'||l_proc, 5);
665: --
666: -- Call conversion function to turn arguments into the
667: -- p_rec structure.
668: --

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

729: p_effective_end_date := l_rec.effective_end_date;
730: p_object_version_number := l_rec.object_version_number;
731: --
732: --
733: hr_utility.set_location(' Leaving:'||l_proc, 10);
734: End ins;
735: --
736: end ben_ppe_ins;