DBA Data[Home] [Help]

APPS.BEN_PLN_INS dependencies on HR_UTILITY

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

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

527: ,p_rec.bnf_exl_participant_flag
528: );
529: --
530: ben_pln_shd.g_api_dml := false; -- Unset the api dml status
531: hr_utility.set_location(' Leaving:'||l_proc, 15);
532: --
533: Exception
534: When hr_api.check_integrity_violated Then
535: -- A check constraint has been violated

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

558: --
559: l_proc varchar2(72) := g_package||'insert_dml';
560: --
561: Begin
562: hr_utility.set_location('Entering:'||l_proc, 5);
563: --
564: dt_insert_dml(p_rec => p_rec,
565: p_effective_date => p_effective_date,
566: p_datetrack_mode => p_datetrack_mode,

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

566: p_datetrack_mode => p_datetrack_mode,
567: p_validation_start_date => p_validation_start_date,
568: p_validation_end_date => p_validation_end_date);
569: --
570: hr_utility.set_location(' Leaving:'||l_proc, 10);
571: End insert_dml;
572: --
573: -- ----------------------------------------------------------------------------
574: -- |------------------------------< pre_insert >------------------------------|

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

634:
635: l_opt_typ_cd ben_pl_typ_f.opt_typ_cd%type ;
636: --
637: Begin
638: hr_utility.set_location('Entering:'||l_proc, 5);
639: --
640: open c1;
641: --
642: fetch c1 into p_rec.pl_id;

Line 652: hr_utility.set_location('CWB parent plan id :'|| p_rec.group_pl_id, 5);

648: fetch c_pln_typ_opt_typ_cd into l_opt_typ_cd ;
649: close c_pln_typ_opt_typ_cd ;
650: if l_opt_typ_cd = 'CWB' then
651: p_rec.group_pl_id := p_rec.pl_id;
652: hr_utility.set_location('CWB parent plan id :'|| p_rec.group_pl_id, 5);
653: --
654: --ICM Changes
655: elsif l_opt_typ_cd = 'ICM' then
656: --

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

672: p_effective_date => p_effective_date,
673: p_name => p_rec.name
674: ) ;
675: --Bug : 3460429
676: hr_utility.set_location(' Leaving:'||l_proc, 10);
677: End pre_insert;
678: --
679: -- ----------------------------------------------------------------------------
680: -- |-----------------------------< post_insert >------------------------------|

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

717: --
718: l_proc varchar2(72) := g_package||'post_insert';
719: --
720: Begin
721: hr_utility.set_location('Entering:'||l_proc, 5);
722: --
723: -- Start of API User Hook for post_insert.
724: --
725: -- Added for GSP validations

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

947: end;
948: --
949: -- End of API User Hook for post_insert.
950: --
951: hr_utility.set_location(' Leaving:'||l_proc, 10);
952: End post_insert;
953: --
954: -- ----------------------------------------------------------------------------
955: -- |-------------------------------< ins_lck >--------------------------------|

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

1001: l_validation_start_date1 date;
1002: l_validation_end_date1 date;
1003: --
1004: Begin
1005: hr_utility.set_location('Entering:'||l_proc, 5);
1006: --
1007: -- Validate the datetrack mode mode getting the validation start
1008: -- and end dates for the specified datetrack operation.
1009: --

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

1099: p_validation_end_date := l_validation_end_date;
1100: --
1101: end if;
1102: --
1103: hr_utility.set_location(' Leaving:'||l_proc, 10);
1104: --
1105: End ins_lck;
1106: --
1107: -- ----------------------------------------------------------------------------

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

1118: l_validation_start_date date;
1119: l_validation_end_date date;
1120: --
1121: Begin
1122: hr_utility.set_location('Entering:'||l_proc, 5);
1123: --
1124: -- Call the lock operation
1125: --
1126: ins_lck

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

1370: l_rec ben_pln_shd.g_rec_type;
1371: l_proc varchar2(72) := g_package||'ins';
1372: --
1373: Begin
1374: hr_utility.set_location('Entering:'||l_proc, 5);
1375: --
1376: -- Call conversion function to turn arguments into the
1377: -- p_rec structure.
1378: --

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

1585: p_effective_end_date := l_rec.effective_end_date;
1586: p_object_version_number := l_rec.object_version_number;
1587: --
1588: --
1589: hr_utility.set_location(' Leaving:'||l_proc, 10);
1590: End ins;
1591: --
1592: end ben_pln_ins;