DBA Data[Home] [Help]

APPS.PAY_ROM_INS dependencies on HR_UTILITY

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

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

168: ,l_last_update_login
169: );
170: --
171: --
172: hr_utility.set_location(' Leaving:'||l_proc, 15);
173: --
174: Exception
175: When hr_api.check_integrity_violated Then
176: -- A check constraint has been violated

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

253: --
254: l_proc varchar2(72) := g_package||'insert_dml';
255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: pay_rom_ins.dt_insert_dml
260: (p_rec => p_rec
261: ,p_effective_date => p_effective_date

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

263: ,p_validation_start_date => p_validation_start_date
264: ,p_validation_end_date => p_validation_end_date
265: );
266: --
267: hr_utility.set_location(' Leaving:'||l_proc, 10);
268: End insert_dml;
269: --
270: -- ----------------------------------------------------------------------------
271: -- |------------------------------< pre_insert >------------------------------|

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

318: --
319: Cursor C_Sel1 is select pay_run_type_org_methods_s.nextval from sys.dual;
320: --
321: Begin
322: hr_utility.set_location('Entering:'||l_proc, 5);
323: --
324: --
325: -- Select the next sequence number
326: --

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

328: Fetch C_Sel1 Into p_rec.run_type_org_method_id;
329: Close C_Sel1;
330: --
331: --
332: hr_utility.set_location(' Leaving:'||l_proc, 10);
333: End pre_insert;
334: --
335: -- ----------------------------------------------------------------------------
336: -- |----------------------------< post_insert >-------------------------------|

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

374: --
375: l_proc varchar2(72) := g_package||'post_insert';
376: --
377: Begin
378: hr_utility.set_location('Entering:'||l_proc, 5);
379: begin
380: --
381: -- insert ownerships if applicable
382: --

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

422: ,p_hook_type => 'AI');
423: --
424: end;
425: --
426: hr_utility.set_location(' Leaving:'||l_proc, 10);
427: End post_insert;
428: --
429: -- ----------------------------------------------------------------------------
430: -- |-------------------------------< ins_lck >--------------------------------|

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

474: l_validation_start_date date;
475: l_validation_end_date date;
476: --
477: Begin
478: hr_utility.set_location('Entering:'||l_proc, 5);
479: --
480: -- Validate the datetrack mode mode getting the validation start
481: -- and end dates for the specified datetrack operation.
482: --

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

501: --
502: p_validation_start_date := l_validation_start_date;
503: p_validation_end_date := l_validation_end_date;
504: --
505: hr_utility.set_location(' Leaving:'||l_proc, 10);
506: --
507: End ins_lck;
508: --
509: -- ----------------------------------------------------------------------------

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

519: l_validation_start_date date;
520: l_validation_end_date date;
521: --
522: Begin
523: hr_utility.set_location('Entering:'||l_proc, 5);
524: --
525: -- Call the lock operation
526: --
527: pay_rom_ins.ins_lck

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

571: ,p_validation_start_date => l_validation_start_date
572: ,p_validation_end_date => l_validation_end_date
573: );
574: --
575: hr_utility.set_location('Leaving:'||l_proc,10);
576: end ins;
577: --
578: -- ----------------------------------------------------------------------------
579: -- |---------------------------------< ins >----------------------------------|

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

596: l_rec pay_rom_shd.g_rec_type;
597: l_proc varchar2(72) := g_package||'ins';
598: --
599: Begin
600: hr_utility.set_location('Entering:'||l_proc, 5);
601: --
602: -- Call conversion function to turn arguments into the
603: -- p_rec structure.
604: --

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

633: p_effective_end_date := l_rec.effective_end_date;
634: p_object_version_number := l_rec.object_version_number;
635: --
636: --
637: hr_utility.set_location(' Leaving:'||l_proc, 10);
638: End ins;
639: --
640: end pay_rom_ins;