DBA Data[Home] [Help]

APPS.PAY_PAP_UPD dependencies on HR_UTILITY

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

55: --
56: l_proc varchar2(72) := g_package||'update_dml';
57: --
58: Begin
59: hr_utility.set_location('Entering:'||l_proc, 5);
60: --
61: -- Increment the object version
62: --
63: p_rec.object_version_number := p_rec.object_version_number + 1;

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

118: where accrual_plan_id = p_rec.accrual_plan_id;
119: --
120: pay_pap_shd.g_api_dml := false; -- Unset the api dml status
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 10);
123: --
124: Exception
125: When hr_api.check_integrity_violated Then
126: -- A check constraint has been violated

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

178: --
179: l_proc varchar2(72) := g_package||'pre_update';
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: hr_utility.set_location(' Leaving:'||l_proc, 10);
185: End pre_update;
186: --

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

180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: hr_utility.set_location(' Leaving:'||l_proc, 10);
185: End pre_update;
186: --
187: -- ----------------------------------------------------------------------------
188: -- |-----------------------------< post_update >------------------------------|

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

220: --
221: l_proc varchar2(72) := g_package||'post_update';
222: --
223: Begin
224: hr_utility.set_location('Entering:'||l_proc, 5);
225:
226: --
227: -- Start of API User Hook for post_update.
228: --

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

352: --
353: -- End of API User Hook for post_update.
354: --
355: --
356: hr_utility.set_location(' Leaving:'||l_proc, 10);
357: End post_update;
358: --
359: -- ----------------------------------------------------------------------------
360: -- |-----------------------------< convert_defs >-----------------------------|

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

404: l_proc varchar2(72) := g_package||'convert_defs';
405: --
406: Begin
407: --
408: hr_utility.set_location('Entering:'||l_proc, 5);
409: --
410: -- We must now examine each argument value in the
411: -- p_rec plsql record structure
412: -- to see if a system default is being used. If a system default

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

625: pay_pap_shd.g_old_rec.information30;
626: End If;
627:
628: --
629: hr_utility.set_location(' Leaving:'||l_proc, 10);
630: --
631: End convert_defs;
632: --
633: -- ----------------------------------------------------------------------------

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

642: l_proc varchar2(72) := g_package||'upd';
643:
644: BEGIN
645:
646: hr_utility.set_location('Entering:'||l_proc, 10);
647:
648: --
649: -- We must lock the row which we need to update.
650: --

Line 665: hr_utility.set_location(l_proc, 20);

661: -- 2. Call the supporting update validate operations.
662: --
663: convert_defs(p_rec);
664:
665: hr_utility.set_location(l_proc, 20);
666:
667: pay_pap_bus.update_validate
668: (p_effective_date => p_effective_date
669: ,p_rec => p_rec

Line 672: hr_utility.set_location(l_proc, 30);

668: (p_effective_date => p_effective_date
669: ,p_rec => p_rec
670: ,p_check_accrual_ff => p_check_accrual_ff);
671:
672: hr_utility.set_location(l_proc, 30);
673:
674: --
675: -- Call the supporting pre-update operation
676: --

Line 679: hr_utility.set_location(l_proc, 40);

675: -- Call the supporting pre-update operation
676: --
677: pre_update(p_rec);
678:
679: hr_utility.set_location(l_proc, 40);
680:
681: --
682: -- Update the row.
683: --

Line 686: hr_utility.set_location(l_proc, 50);

682: -- Update the row.
683: --
684: update_dml(p_rec);
685:
686: hr_utility.set_location(l_proc, 50);
687:
688: --
689: -- Call the supporting post-update operation
690: --

Line 693: hr_utility.set_location('Leaving: '||l_proc, 60);

689: -- Call the supporting post-update operation
690: --
691: post_update(p_rec);
692:
693: hr_utility.set_location('Leaving: '||l_proc, 60);
694:
695: END upd;
696: --
697: -- ----------------------------------------------------------------------------

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

752: l_proc varchar2(72) := g_package||'upd';
753:
754: BEGIN
755:
756: hr_utility.set_location('Entering:'||l_proc, 10);
757:
758: --
759: -- Call conversion function to turn arguments into the
760: -- l_rec structure.

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

829: ,p_check_accrual_ff => p_check_accrual_ff);
830:
831: p_object_version_number := l_rec.object_version_number;
832: --
833: hr_utility.set_location(' Leaving:'||l_proc, 10);
834:
835: END upd;
836: --
837: END pay_pap_upd;