DBA Data[Home] [Help]

APPS.PAY_EVC_INS dependencies on HR_UTILITY

Line 24: hr_utility.set_location('Entering:'||l_proc, 10);

20: --
21: l_proc varchar2(72) := g_package||'set_base_key_value';
22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: pay_evc_ins.g_event_value_change_id_i := p_event_value_change_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 28: hr_utility.set_location(' Leaving:'||l_proc, 20);

24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: pay_evc_ins.g_event_value_change_id_i := p_event_value_change_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --
31: --
32: -- ----------------------------------------------------------------------------

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

101: l_last_updated_by pay_event_value_changes_f.last_updated_by%TYPE;
102: l_last_update_login pay_event_value_changes_f.last_update_login%TYPE;
103: --
104: Begin
105: hr_utility.set_location('Entering:'||l_proc, 5);
106: --
107: -- Get the object version number for the insert
108: --
109: p_rec.object_version_number :=

Line 126: hr_utility.set_location(l_proc, 10);

122: -- If the datetrack_mode is not INSERT then we must populate the WHO
123: -- columns with the 'old' creation values and 'new' updated values.
124: --
125: If (p_datetrack_mode <> hr_api.g_insert) then
126: hr_utility.set_location(l_proc, 10);
127: --
128: -- Select the 'old' created values
129: --
130: Open C_Sel1;

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

196: ,l_last_update_login
197: );
198: --
199: --
200: hr_utility.set_location(' Leaving:'||l_proc, 15);
201: --
202: Exception
203: When hr_api.check_integrity_violated Then
204: -- A check constraint has been violated

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

276: --
277: l_proc varchar2(72) := g_package||'insert_dml';
278: --
279: Begin
280: hr_utility.set_location('Entering:'||l_proc, 5);
281: --
282: pay_evc_ins.dt_insert_dml
283: (p_rec => p_rec
284: ,p_effective_date => p_effective_date

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

286: ,p_validation_start_date => p_validation_start_date
287: ,p_validation_end_date => p_validation_end_date
288: );
289: --
290: hr_utility.set_location(' Leaving:'||l_proc, 10);
291: End insert_dml;
292: --
293: -- ----------------------------------------------------------------------------
294: -- |------------------------------< pre_insert >------------------------------|

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

348: l_proc varchar2(72) := g_package||'pre_insert';
349: l_exists varchar2(1);
350: --
351: Begin
352: hr_utility.set_location('Entering:'||l_proc, 5);
353: --
354: If (pay_evc_ins.g_event_value_change_id_i is not null) Then
355: --
356: -- Verify registered primary key values not already in use

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

385: Close C_Sel1;
386: End If;
387: --
388: --
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: End pre_insert;
391: --
392: -- ----------------------------------------------------------------------------
393: -- |----------------------------< post_insert >-------------------------------|

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

431: --
432: l_proc varchar2(72) := g_package||'post_insert';
433: --
434: Begin
435: hr_utility.set_location('Entering:'||l_proc, 5);
436: begin
437: --
438: -- insert ownerships if applicable
439: create_app_ownerships

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

487: ,p_hook_type => 'AI');
488: --
489: end;
490: --
491: hr_utility.set_location(' Leaving:'||l_proc, 10);
492: End post_insert;
493: --
494: -- ----------------------------------------------------------------------------
495: -- |-------------------------------< ins_lck >--------------------------------|

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

539: l_validation_start_date date;
540: l_validation_end_date date;
541: --
542: Begin
543: hr_utility.set_location('Entering:'||l_proc, 5);
544: --
545: -- Validate the datetrack mode mode getting the validation start
546: -- and end dates for the specified datetrack operation.
547: --

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

563: --
564: p_validation_start_date := l_validation_start_date;
565: p_validation_end_date := l_validation_end_date;
566: --
567: hr_utility.set_location(' Leaving:'||l_proc, 10);
568: --
569: End ins_lck;
570: --
571: -- ----------------------------------------------------------------------------

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

581: l_validation_start_date date;
582: l_validation_end_date date;
583: --
584: Begin
585: hr_utility.set_location('Entering:'||l_proc, 5);
586: --
587: -- Call the lock operation
588: --
589: pay_evc_ins.ins_lck

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

639: --
640: -- Call to raise any errors on multi-message list
641: hr_multi_message.end_validation_set;
642: --
643: hr_utility.set_location('Leaving:'||l_proc,10);
644: end ins;
645: --
646: -- ----------------------------------------------------------------------------
647: -- |---------------------------------< ins >----------------------------------|

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

667: l_rec pay_evc_shd.g_rec_type;
668: l_proc varchar2(72) := g_package||'ins';
669: --
670: Begin
671: hr_utility.set_location('Entering:'||l_proc, 5);
672: --
673: -- Call conversion function to turn arguments into the
674: -- p_rec structure.
675: --

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

707: p_effective_end_date := l_rec.effective_end_date;
708: p_object_version_number := l_rec.object_version_number;
709: --
710: --
711: hr_utility.set_location(' Leaving:'||l_proc, 10);
712: End ins;
713: --
714: end pay_evc_ins;