DBA Data[Home] [Help]

APPS.BEN_CTP_INS dependencies on HR_UTILITY

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

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

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

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

351: l_last_update_login
352: );
353: --
354: ben_ctp_shd.g_api_dml := false; -- Unset the api dml status
355: hr_utility.set_location(' Leaving:'||l_proc, 15);
356: --
357: Exception
358: When hr_api.check_integrity_violated Then
359: -- A check constraint has been violated

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

382: --
383: l_proc varchar2(72) := g_package||'insert_dml';
384: --
385: Begin
386: hr_utility.set_location('Entering:'||l_proc, 5);
387: --
388: dt_insert_dml(p_rec => p_rec,
389: p_effective_date => p_effective_date,
390: p_datetrack_mode => p_datetrack_mode,

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

390: p_datetrack_mode => p_datetrack_mode,
391: p_validation_start_date => p_validation_start_date,
392: p_validation_end_date => p_validation_end_date);
393: --
394: hr_utility.set_location(' Leaving:'||l_proc, 10);
395: End insert_dml;
396: --
397: -- ----------------------------------------------------------------------------
398: -- |------------------------------< pre_insert >------------------------------|

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

446: cursor c1 is select ben_ptip_f_s.nextval
447: from sys.dual;
448: --
449: Begin
450: hr_utility.set_location('Entering:'||l_proc, 5);
451: --
452: --
453: open c1;
454: fetch c1 into p_rec.ptip_id;

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

454: fetch c1 into p_rec.ptip_id;
455: close c1;
456: --
457: --
458: hr_utility.set_location(' Leaving:'||l_proc, 10);
459: End pre_insert;
460: --
461: -- ----------------------------------------------------------------------------
462: -- |-----------------------------< post_insert >------------------------------|

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

499: --
500: l_proc varchar2(72) := g_package||'post_insert';
501: --
502: Begin
503: hr_utility.set_location('Entering:'||l_proc, 5);
504: --
505: --
506: -- Start of API User Hook for post_insert.
507: --

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

629: --
630: -- End of API User Hook for post_insert.
631: --
632: --
633: hr_utility.set_location(' Leaving:'||l_proc, 10);
634: End post_insert;
635: --
636: -- ----------------------------------------------------------------------------
637: -- |-------------------------------< ins_lck >--------------------------------|

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

681: l_validation_start_date date;
682: l_validation_end_date date;
683: --
684: Begin
685: hr_utility.set_location('Entering:'||l_proc, 5);
686: --
687: -- Validate the datetrack mode mode getting the validation start
688: -- and end dates for the specified datetrack operation.
689: --

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

716: --
717: p_validation_start_date := l_validation_start_date;
718: p_validation_end_date := l_validation_end_date;
719: --
720: hr_utility.set_location(' Leaving:'||l_proc, 10);
721: --
722: End ins_lck;
723: --
724: -- ----------------------------------------------------------------------------

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

735: l_validation_start_date date;
736: l_validation_end_date date;
737: --
738: Begin
739: hr_utility.set_location('Entering:'||l_proc, 5);
740: --
741: -- Call the lock operation
742: --
743: ins_lck

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

898: l_rec ben_ctp_shd.g_rec_type;
899: l_proc varchar2(72) := g_package||'ins';
900: --
901: Begin
902: hr_utility.set_location('Entering:'||l_proc, 5);
903: --
904: -- Call conversion function to turn arguments into the
905: -- p_rec structure.
906: --

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

1024: p_effective_end_date := l_rec.effective_end_date;
1025: p_object_version_number := l_rec.object_version_number;
1026: --
1027: --
1028: hr_utility.set_location(' Leaving:'||l_proc, 10);
1029: End ins;
1030: --
1031: end ben_ctp_ins;