DBA Data[Home] [Help]

APPS.HR_LIP_INS dependencies on HR_UTILITY

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

79: l_last_updated_by hr_de_liability_premiums_f.last_updated_by%TYPE;
80: l_last_update_login hr_de_liability_premiums_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 104: hr_utility.set_location(l_proc, 10);

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

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

206: ,l_last_update_login
207: );
208: --
209: --
210: hr_utility.set_location(' Leaving:'||l_proc, 15);
211: --
212: Exception
213: When hr_api.check_integrity_violated Then
214: -- A check constraint has been violated

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

238: --
239: l_proc varchar2(72) := g_package||'insert_dml';
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: hr_lip_ins.dt_insert_dml
245: (p_rec => p_rec
246: ,p_effective_date => p_effective_date

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

248: ,p_validation_start_date => p_validation_start_date
249: ,p_validation_end_date => p_validation_end_date
250: );
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 10);
253: End insert_dml;
254: --
255: -- ----------------------------------------------------------------------------
256: -- |------------------------------< pre_insert >------------------------------|

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

303: --
304: Cursor C_Sel1 is select hr_de_liability_premiums_s.nextval from sys.dual;
305: --
306: Begin
307: hr_utility.set_location('Entering:'||l_proc, 5);
308: --
309: --
310: -- Select the next sequence number
311: --

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

313: Fetch C_Sel1 Into p_rec.liability_premiums_id;
314: Close C_Sel1;
315: --
316: --
317: hr_utility.set_location(' Leaving:'||l_proc, 10);
318: End pre_insert;
319: --
320: -- ----------------------------------------------------------------------------
321: -- |----------------------------< post_insert >-------------------------------|

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

359: --
360: l_proc varchar2(72) := g_package||'post_insert';
361: --
362: Begin
363: hr_utility.set_location('Entering:'||l_proc, 5);
364: begin
365: --
366: hr_lip_rki.after_insert
367: (p_effective_date

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

441: ,p_hook_type => 'AI');
442: --
443: end;
444: --
445: hr_utility.set_location(' Leaving:'||l_proc, 10);
446: End post_insert;
447: --
448: -- ----------------------------------------------------------------------------
449: -- |-------------------------------< ins_lck >--------------------------------|

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

493: l_validation_start_date date;
494: l_validation_end_date date;
495: --
496: Begin
497: hr_utility.set_location('Entering:'||l_proc, 5);
498: --
499: -- Validate the datetrack mode mode getting the validation start
500: -- and end dates for the specified datetrack operation.
501: --

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

514: --
515: p_validation_start_date := l_validation_start_date;
516: p_validation_end_date := l_validation_end_date;
517: --
518: hr_utility.set_location(' Leaving:'||l_proc, 10);
519: --
520: End ins_lck;
521: --
522: -- ----------------------------------------------------------------------------

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

532: l_validation_start_date date;
533: l_validation_end_date date;
534: --
535: Begin
536: hr_utility.set_location('Entering:'||l_proc, 5);
537: --
538: -- Call the lock operation
539: --
540: hr_lip_ins.ins_lck

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

584: ,p_validation_start_date => l_validation_start_date
585: ,p_validation_end_date => l_validation_end_date
586: );
587: --
588: hr_utility.set_location('Leaving:'||l_proc,10);
589: end ins;
590: --
591: -- ----------------------------------------------------------------------------
592: -- |---------------------------------< ins >----------------------------------|

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

628: l_rec hr_lip_shd.g_rec_type;
629: l_proc varchar2(72) := g_package||'ins';
630: --
631: Begin
632: hr_utility.set_location('Entering:'||l_proc, 5);
633: --
634: -- Call conversion function to turn arguments into the
635: -- p_rec structure.
636: --

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

684: p_effective_end_date := l_rec.effective_end_date;
685: p_object_version_number := l_rec.object_version_number;
686: --
687: --
688: hr_utility.set_location(' Leaving:'||l_proc, 10);
689: End ins;
690: --
691: end hr_lip_ins;