DBA Data[Home] [Help]

APPS.BEN_PSL_INS dependencies on HR_UTILITY

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

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

233: l_last_update_login
234: );
235: --
236: ben_psl_shd.g_api_dml := false; -- Unset the api dml status
237: hr_utility.set_location(' Leaving:'||l_proc, 15);
238: --
239: Exception
240: When hr_api.check_integrity_violated Then
241: -- A check constraint has been violated

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

264: --
265: l_proc varchar2(72) := g_package||'insert_dml';
266: --
267: Begin
268: hr_utility.set_location('Entering:'||l_proc, 5);
269: --
270: dt_insert_dml(p_rec => p_rec,
271: p_effective_date => p_effective_date,
272: p_datetrack_mode => p_datetrack_mode,

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

272: p_datetrack_mode => p_datetrack_mode,
273: p_validation_start_date => p_validation_start_date,
274: p_validation_end_date => p_validation_end_date);
275: --
276: hr_utility.set_location(' Leaving:'||l_proc, 10);
277: End insert_dml;
278: --
279: -- ----------------------------------------------------------------------------
280: -- |------------------------------< pre_insert >------------------------------|

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

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

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

335: Open C_Sel1;
336: Fetch C_Sel1 Into p_rec.per_info_chg_cs_ler_id;
337: Close C_Sel1;
338: --
339: hr_utility.set_location(' Leaving:'||l_proc, 10);
340: End pre_insert;
341: --
342: -- ----------------------------------------------------------------------------
343: -- |-----------------------------< post_insert >------------------------------|

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

380: --
381: l_proc varchar2(72) := g_package||'post_insert';
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: --
386: --
387: -- Start of API User Hook for post_insert.
388: --

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

451: --
452: -- End of API User Hook for post_insert.
453: --
454: --
455: hr_utility.set_location(' Leaving:'||l_proc, 10);
456: End post_insert;
457: --
458: -- ----------------------------------------------------------------------------
459: -- |-------------------------------< ins_lck >--------------------------------|

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

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

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

523: --
524: p_validation_start_date := l_validation_start_date;
525: p_validation_end_date := l_validation_end_date;
526: --
527: hr_utility.set_location(' Leaving:'||l_proc, 10);
528: --
529: End ins_lck;
530: --
531: -- ----------------------------------------------------------------------------

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

542: l_validation_start_date date;
543: l_validation_end_date date;
544: --
545: Begin
546: hr_utility.set_location('Entering:'||l_proc, 5);
547: --
548: -- Call the lock operation
549: --
550: ins_lck

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

646: l_rec ben_psl_shd.g_rec_type;
647: l_proc varchar2(72) := g_package||'ins';
648: --
649: Begin
650: hr_utility.set_location('Entering:'||l_proc, 5);
651: --
652: -- Call conversion function to turn arguments into the
653: -- p_rec structure.
654: --

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

714: p_effective_end_date := l_rec.effective_end_date;
715: p_object_version_number := l_rec.object_version_number;
716: --
717: --
718: hr_utility.set_location(' Leaving:'||l_proc, 10);
719: End ins;
720: --
721: end ben_psl_ins;