DBA Data[Home] [Help]

APPS.BEN_EPO_INS dependencies on HR_UTILITY

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

79: l_last_updated_by ben_elig_per_opt_f.last_updated_by%TYPE;
80: l_last_update_login ben_elig_per_opt_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 133: hr_utility.set_location('Ins EPO:'||l_proc, 5);

129: ben_epo_shd.g_api_dml := true; -- Set the api dml status
130: --
131: -- Insert the row into: ben_elig_per_opt_f
132: --
133: hr_utility.set_location('Ins EPO:'||l_proc, 5);
134: insert into ben_elig_per_opt_f
135: ( elig_per_opt_id,
136: elig_per_id,
137: effective_start_date,

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

322: l_last_update_login
323: );
324: --
325: ben_epo_shd.g_api_dml := false; -- Unset the api dml status
326: hr_utility.set_location(' Leaving:'||l_proc, 15);
327: --
328: Exception
329: When hr_api.check_integrity_violated Then
330: -- A check constraint has been violated

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

353: --
354: l_proc varchar2(72) := g_package||'insert_dml';
355: --
356: Begin
357: hr_utility.set_location('Entering:'||l_proc, 5);
358: --
359: dt_insert_dml(p_rec => p_rec,
360: p_effective_date => p_effective_date,
361: p_datetrack_mode => p_datetrack_mode,

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

361: p_datetrack_mode => p_datetrack_mode,
362: p_validation_start_date => p_validation_start_date,
363: p_validation_end_date => p_validation_end_date);
364: --
365: hr_utility.set_location(' Leaving:'||l_proc, 10);
366: End insert_dml;
367: --
368: -- ----------------------------------------------------------------------------
369: -- |------------------------------< pre_insert >------------------------------|

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

416: --
417: Cursor C_Sel1 is select ben_elig_per_opt_f_s.nextval from sys.dual;
418: --
419: Begin
420: hr_utility.set_location('Entering:'||l_proc, 5);
421: --
422: --
423: -- Select the next sequence number
424: --

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

426: Fetch C_Sel1 Into p_rec.elig_per_opt_id;
427: Close C_Sel1;
428: --
429: --
430: hr_utility.set_location(' Leaving:'||l_proc, 10);
431: End pre_insert;
432: --
433: -- ----------------------------------------------------------------------------
434: -- |-----------------------------< post_insert >------------------------------|

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

471: --
472: l_proc varchar2(72) := g_package||'post_insert';
473: --
474: Begin
475: hr_utility.set_location('Entering:'||l_proc, 5);
476: --
477: --
478: -- Start of API User Hook for post_insert.
479: --

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

586: --
587: -- End of API User Hook for post_insert.
588: --
589: --
590: hr_utility.set_location(' Leaving:'||l_proc, 10);
591: End post_insert;
592: --
593: -- ----------------------------------------------------------------------------
594: -- |-------------------------------< ins_lck >--------------------------------|

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

638: l_validation_start_date date;
639: l_validation_end_date date;
640: --
641: Begin
642: hr_utility.set_location('Entering:'||l_proc, 5);
643: --
644: -- Validate the datetrack mode mode getting the validation start
645: -- and end dates for the specified datetrack operation.
646: --

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

662: --
663: p_validation_start_date := l_validation_start_date;
664: p_validation_end_date := l_validation_end_date;
665: --
666: hr_utility.set_location(' Leaving:'||l_proc, 10);
667: --
668: End ins_lck;
669: --
670: -- ----------------------------------------------------------------------------

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

683: l_validation_start_date date;
684: l_validation_end_date date;
685: --
686: Begin
687: hr_utility.set_location('Entering:'||l_proc, 5);
688: --
689: -- Call the lock operation
690: --
691: ins_lck

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

842: l_rec ben_epo_shd.g_rec_type;
843: l_proc varchar2(72) := g_package||'ins';
844: --
845: Begin
846: hr_utility.set_location('Entering:'||l_proc, 5);
847: --
848: -- Call conversion function to turn arguments into the
849: -- p_rec structure.
850: --

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

954: p_effective_end_date := l_rec.effective_end_date;
955: p_object_version_number := l_rec.object_version_number;
956: --
957: --
958: hr_utility.set_location(' Leaving:'||l_proc, 10);
959: End ins;
960: --
961: end ben_epo_ins;