DBA Data[Home] [Help]

APPS.BEN_PEI_INS dependencies on HR_UTILITY

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

78: l_last_updated_by ben_pl_extract_identifier_f.last_updated_by%TYPE;
79: l_last_update_login ben_pl_extract_identifier_f.last_update_login%TYPE;
80: --
81: Begin
82: hr_utility.set_location('Entering:'||l_proc, 5);
83: --
84: -- Get the object version number for the insert
85: --
86: p_rec.object_version_number :=

Line 102: hr_utility.set_location(l_proc, 10);

98: -- If the datetrack_mode is not INSERT then we must populate the WHO
99: -- columns with the 'old' creation values and 'new' updated values.
100: --
101: If (p_datetrack_mode <> 'INSERT') then
102: hr_utility.set_location(l_proc, 10);
103: --
104: -- Select the 'old' created values
105: --
106: Open C_Sel1;

Line 184: hr_utility.set_location(' Leaving:'||l_proc, 15);

180: ,p_rec.business_group_id
181: );
182: --
183: ben_pei_shd.g_api_dml := false; -- Unset the api dml status
184: hr_utility.set_location(' Leaving:'||l_proc, 15);
185: --
186: Exception
187: When hr_api.check_integrity_violated Then
188: -- A check constraint has been violated

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

211: --
212: l_proc varchar2(72) := g_package||'insert_dml';
213: --
214: Begin
215: hr_utility.set_location('Entering:'||l_proc, 5);
216: --
217: dt_insert_dml(p_rec => p_rec,
218: p_effective_date => p_effective_date,
219: p_datetrack_mode => p_datetrack_mode,

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

219: p_datetrack_mode => p_datetrack_mode,
220: p_validation_start_date => p_validation_start_date,
221: p_validation_end_date => p_validation_end_date);
222: --
223: hr_utility.set_location(' Leaving:'||l_proc, 10);
224: End insert_dml;
225: --
226: -- ----------------------------------------------------------------------------
227: -- |------------------------------< pre_insert >------------------------------|

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

275: select ben_pl_extract_identifier_s.nextval
276: from sys.dual;
277: --
278: Begin
279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: open c1;
282: fetch c1 into p_rec.pl_extract_identifier_id;
283: close c1;

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

281: open c1;
282: fetch c1 into p_rec.pl_extract_identifier_id;
283: close c1;
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 10);
286: End pre_insert;
287: --
288: -- ----------------------------------------------------------------------------
289: -- |-----------------------------< post_insert >------------------------------|

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

326: --
327: l_proc varchar2(72) := g_package||'post_insert';
328: --
329: Begin
330: hr_utility.set_location('Entering:'||l_proc, 5);
331: --
332: -- Start of API User Hook for post_insert.
333: --
334: begin

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

368: end;
369: --
370: -- End of API User Hook for post_insert.
371: --
372: hr_utility.set_location(' Leaving:'||l_proc, 10);
373: End post_insert;
374: --
375: -- ----------------------------------------------------------------------------
376: -- |-------------------------------< ins_lck >--------------------------------|

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

420: l_validation_start_date date;
421: l_validation_end_date date;
422: --
423: Begin
424: hr_utility.set_location('Entering:'||l_proc, 5);
425: --
426: -- Validate the datetrack mode mode getting the validation start
427: -- and end dates for the specified datetrack operation.
428: --

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

440: --
441: p_validation_start_date := l_validation_start_date;
442: p_validation_end_date := l_validation_end_date;
443: --
444: hr_utility.set_location(' Leaving:'||l_proc, 10);
445: --
446: End ins_lck;
447: --
448: -- ----------------------------------------------------------------------------

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

459: l_validation_start_date date;
460: l_validation_end_date date;
461: --
462: Begin
463: hr_utility.set_location('Entering:'||l_proc, 5);
464: --
465: -- Call the lock operation
466: --
467: ins_lck

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

538: l_rec ben_pei_shd.g_rec_type;
539: l_proc varchar2(72) := g_package||'ins';
540: --
541: Begin
542: hr_utility.set_location('Entering:'||l_proc, 5);
543: --
544: -- Call conversion function to turn arguments into the
545: -- p_rec structure.
546: --

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

579: p_effective_end_date := l_rec.effective_end_date;
580: p_object_version_number := l_rec.object_version_number;
581: --
582: --
583: hr_utility.set_location(' Leaving:'||l_proc, 10);
584: End ins;
585: --
586: end ben_pei_ins;