DBA Data[Home] [Help]

APPS.BEN_PCX_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_pl_bnf_ctfn_f.last_updated_by%TYPE;
80: l_last_update_login ben_pl_bnf_ctfn_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_pcx_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 331: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

527: --
528: p_validation_start_date := l_validation_start_date;
529: p_validation_end_date := l_validation_end_date;
530: --
531: hr_utility.set_location(' Leaving:'||l_proc, 10);
532: --
533: End ins_lck;
534: --
535: -- ----------------------------------------------------------------------------

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

546: l_validation_start_date date;
547: l_validation_end_date date;
548: --
549: Begin
550: hr_utility.set_location('Entering:'||l_proc, 5);
551: --
552: -- Call the lock operation
553: --
554: ins_lck

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

650: l_rec ben_pcx_shd.g_rec_type;
651: l_proc varchar2(72) := g_package||'ins';
652: --
653: Begin
654: hr_utility.set_location('Entering:'||l_proc, 5);
655: --
656: -- Call conversion function to turn arguments into the
657: -- p_rec structure.
658: --

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

718: p_effective_end_date := l_rec.effective_end_date;
719: p_object_version_number := l_rec.object_version_number;
720: --
721: --
722: hr_utility.set_location(' Leaving:'||l_proc, 10);
723: End ins;
724: --
725: end ben_pcx_ins;