DBA Data[Home] [Help]

APPS.BEN_LER_INS dependencies on HR_UTILITY

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

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

299: and t.effective_start_date = p_rec.effective_start_date
300: and t.language = l.language_code);
301: --
302: ben_ler_shd.g_api_dml := false; -- Unset the api dml status
303: hr_utility.set_location(' Leaving:'||l_proc, 15);
304: --
305: Exception
306: When hr_api.check_integrity_violated Then
307: -- A check constraint has been violated

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

330: --
331: l_proc varchar2(72) := g_package||'insert_dml';
332: --
333: Begin
334: hr_utility.set_location('Entering:'||l_proc, 5);
335: --
336: dt_insert_dml(p_rec => p_rec,
337: p_effective_date => p_effective_date,
338: p_datetrack_mode => p_datetrack_mode,

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

338: p_datetrack_mode => p_datetrack_mode,
339: p_validation_start_date => p_validation_start_date,
340: p_validation_end_date => p_validation_end_date);
341: --
342: hr_utility.set_location(' Leaving:'||l_proc, 10);
343: End insert_dml;
344: --
345: -- ----------------------------------------------------------------------------
346: -- |------------------------------< pre_insert >------------------------------|

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

392: --
393: Cursor C_Sel1 is select ben_ler_f_s.nextval from sys.dual;
394: --
395: Begin
396: hr_utility.set_location('Entering:'||l_proc, 5);
397: --
398: --
399: -- Select the next sequence number
400: --

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

402: Fetch C_Sel1 Into p_rec.ler_id;
403: Close C_Sel1;
404: --
405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 10);
407: End pre_insert;
408: --
409: -- ----------------------------------------------------------------------------
410: -- |-----------------------------< post_insert >------------------------------|

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

447: --
448: l_proc varchar2(72) := g_package||'post_insert';
449: --
450: Begin
451: hr_utility.set_location('Entering:'||l_proc, 5);
452: --
453: --
454: -- Start of API User Hook for post_insert.
455: --

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

531: --
532: -- End of API User Hook for post_insert.
533: --
534: --
535: hr_utility.set_location(' Leaving:'||l_proc, 10);
536: End post_insert;
537: --
538: -- ----------------------------------------------------------------------------
539: -- |-------------------------------< ins_lck >--------------------------------|

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

582: l_validation_start_date date;
583: l_validation_end_date date;
584: --
585: Begin
586: hr_utility.set_location('Entering:'||l_proc, 5);
587: --
588: -- Validate the datetrack mode mode getting the validation start
589: -- and end dates for the specified datetrack operation.
590: --

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

605: --
606: p_validation_start_date := l_validation_start_date;
607: p_validation_end_date := l_validation_end_date;
608: --
609: hr_utility.set_location(' Leaving:'||l_proc, 10);
610: --
611: End ins_lck;
612: --
613: -- ----------------------------------------------------------------------------

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

624: l_validation_start_date date;
625: l_validation_end_date date;
626: --
627: Begin
628: hr_utility.set_location('Entering:'||l_proc, 5);
629: --
630: -- Call the lock operation
631: --
632: ins_lck

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

741: l_rec ben_ler_shd.g_rec_type;
742: l_proc varchar2(72) := g_package||'ins';
743: --
744: Begin
745: hr_utility.set_location('Entering:'||l_proc, 5);
746: --
747: -- Call conversion function to turn arguments into the
748: -- p_rec structure.
749: --

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

822: p_effective_end_date := l_rec.effective_end_date;
823: p_object_version_number := l_rec.object_version_number;
824: --
825: --
826: hr_utility.set_location(' Leaving:'||l_proc, 10);
827: End ins;
828: --
829: end ben_ler_ins;