DBA Data[Home] [Help]

APPS.BEN_TTP_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_ttl_prtt_rt_f.last_updated_by%TYPE;
80: l_last_update_login ben_ttl_prtt_rt_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_ttp_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 333: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

339: Open C_Sel1;
340: Fetch C_Sel1 Into p_rec.ttl_prtt_rt_id;
341: Close C_Sel1;
342: --
343: hr_utility.set_location(' Leaving:'||l_proc, 10);
344: End pre_insert;
345: --
346: -- ----------------------------------------------------------------------------
347: -- |-----------------------------< post_insert >------------------------------|

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

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

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

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

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

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

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

531: --
532: p_validation_start_date := l_validation_start_date;
533: p_validation_end_date := l_validation_end_date;
534: --
535: hr_utility.set_location(' Leaving:'||l_proc, 10);
536: --
537: End ins_lck;
538: --
539: -- ----------------------------------------------------------------------------

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

550: l_validation_start_date date;
551: l_validation_end_date date;
552: --
553: Begin
554: hr_utility.set_location('Entering:'||l_proc, 5);
555: --
556: -- Call the lock operation
557: --
558: ins_lck

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

655: l_rec ben_ttp_shd.g_rec_type;
656: l_proc varchar2(72) := g_package||'ins';
657: --
658: Begin
659: hr_utility.set_location('Entering:'||l_proc, 5);
660: --
661: -- Call conversion function to turn arguments into the
662: -- p_rec structure.
663: --

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

724: p_effective_end_date := l_rec.effective_end_date;
725: p_object_version_number := l_rec.object_version_number;
726: --
727: --
728: hr_utility.set_location(' Leaving:'||l_proc, 10);
729: End ins;
730: --
731: end ben_ttp_ins;