DBA Data[Home] [Help]

APPS.PER_PCL_INS dependencies on HR_UTILITY

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

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

180: ,l_last_update_login
181: );
182: --
183: --
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 216: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

277: --
278: Cursor C_Sel1 is select per_cagr_entitlement_lines_s.nextval from sys.dual;
279: --
280: Begin
281: hr_utility.set_location('Entering:'||l_proc, 5);
282: --
283: --
284: -- Select the next sequence number
285: --

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

287: Fetch C_Sel1 Into p_rec.cagr_entitlement_line_id;
288: Close C_Sel1;
289: --
290: --
291: hr_utility.set_location(' Leaving:'||l_proc, 10);
292: End pre_insert;
293: --
294: -- ----------------------------------------------------------------------------
295: -- |----------------------------< post_insert >-------------------------------|

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

333: --
334: l_proc varchar2(72) := g_package||'post_insert';
335: --
336: Begin
337: hr_utility.set_location('Entering:'||l_proc, 5);
338: begin
339: --
340: per_pcl_rki.after_insert
341: (p_effective_date

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

389: ,p_hook_type => 'AI');
390: --
391: end;
392: --
393: hr_utility.set_location(' Leaving:'||l_proc, 10);
394: End post_insert;
395: --
396: -- ----------------------------------------------------------------------------
397: -- |-------------------------------< ins_lck >--------------------------------|

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

441: l_validation_start_date date;
442: l_validation_end_date date;
443: --
444: Begin
445: hr_utility.set_location('Entering:'||l_proc, 5);
446: --
447: -- Validate the datetrack mode mode getting the validation start
448: -- and end dates for the specified datetrack operation.
449: --

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

474: --
475: p_validation_start_date := l_validation_start_date;
476: p_validation_end_date := l_validation_end_date;
477: --
478: hr_utility.set_location(' Leaving:'||l_proc, 10);
479: --
480: End ins_lck;
481: --
482: -- ----------------------------------------------------------------------------

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

492: l_validation_start_date date;
493: l_validation_end_date date;
494: --
495: Begin
496: hr_utility.set_location('Entering:'||l_proc, 5);
497: --
498: -- Call the lock operation
499: --
500: per_pcl_ins.ins_lck

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

544: ,p_validation_start_date => l_validation_start_date
545: ,p_validation_end_date => l_validation_end_date
546: );
547: --
548: hr_utility.set_location('Leaving:'||l_proc,10);
549: end ins;
550: --
551: -- ----------------------------------------------------------------------------
552: -- |---------------------------------< ins >----------------------------------|

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

575: l_rec per_pcl_shd.g_rec_type;
576: l_proc varchar2(72) := g_package||'ins';
577: --
578: Begin
579: hr_utility.set_location('Entering:'||l_proc, 5);
580: --
581: -- Call conversion function to turn arguments into the
582: -- p_rec structure.
583: --

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

618: p_effective_end_date := l_rec.effective_end_date;
619: p_object_version_number := l_rec.object_version_number;
620: --
621: --
622: hr_utility.set_location(' Leaving:'||l_proc, 10);
623: End ins;
624: --
625: end per_pcl_ins;