DBA Data[Home] [Help]

APPS.BEN_ECV_DEL dependencies on HR_UTILITY

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

59: --
60: l_proc varchar2(72) := g_package||'dt_delete_dml';
61: --
62: Begin
63: hr_utility.set_location('Entering:'||l_proc, 5);
64: If (p_datetrack_mode = 'DELETE_NEXT_CHANGE') then
65: hr_utility.set_location(l_proc, 10);
66: ben_ecv_shd.g_api_dml := true; -- Set the api dml status
67: --

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

61: --
62: Begin
63: hr_utility.set_location('Entering:'||l_proc, 5);
64: If (p_datetrack_mode = 'DELETE_NEXT_CHANGE') then
65: hr_utility.set_location(l_proc, 10);
66: ben_ecv_shd.g_api_dml := true; -- Set the api dml status
67: --
68: -- Delete the where the effective start date is equal
69: -- to the validation end date.

Line 77: hr_utility.set_location(l_proc, 15);

73: and effective_start_date = p_validation_start_date;
74: --
75: ben_ecv_shd.g_api_dml := false; -- Unset the api dml status
76: Else
77: hr_utility.set_location(l_proc, 15);
78: ben_ecv_shd.g_api_dml := true; -- Set the api dml status
79: --
80: -- Delete the row(s) where the effective start date is greater than
81: -- or equal to the validation start date.

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

86: --
87: ben_ecv_shd.g_api_dml := false; -- Unset the api dml status
88: End If;
89: --
90: hr_utility.set_location(' Leaving:'||l_proc, 20);
91: --
92: Exception
93: When Others Then
94: ben_ecv_shd.g_api_dml := false; -- Unset the api dml status

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

108: --
109: l_proc varchar2(72) := g_package||'delete_dml';
110: --
111: Begin
112: hr_utility.set_location('Entering:'||l_proc, 5);
113: --
114: dt_delete_dml(p_rec => p_rec,
115: p_effective_date => p_effective_date,
116: p_datetrack_mode => p_datetrack_mode,

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

116: p_datetrack_mode => p_datetrack_mode,
117: p_validation_start_date => p_validation_start_date,
118: p_validation_end_date => p_validation_end_date);
119: --
120: hr_utility.set_location(' Leaving:'||l_proc, 10);
121: end delete_dml;
122: --
123: -- ----------------------------------------------------------------------------
124: -- |----------------------------< dt_pre_delete >-----------------------------|

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

162: --
163: l_proc varchar2(72) := g_package||'dt_pre_delete';
164: --
165: Begin
166: hr_utility.set_location('Entering:'||l_proc, 5);
167: --
168: If (p_datetrack_mode <> 'ZAP') then
169: --
170: p_rec.effective_start_date := ben_ecv_shd.g_old_rec.effective_start_date;

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

187: Else
188: p_rec.effective_start_date := null;
189: p_rec.effective_end_date := null;
190: End If;
191: hr_utility.set_location(' Leaving:'||l_proc, 10);
192: End dt_pre_delete;
193: --
194: -- ----------------------------------------------------------------------------
195: -- |------------------------------< pre_delete >------------------------------|

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

233: --
234: l_proc varchar2(72) := g_package||'pre_delete';
235: --
236: Begin
237: hr_utility.set_location('Entering:'||l_proc, 5);
238: --
239: --
240: --
241: dt_pre_delete

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

244: p_datetrack_mode => p_datetrack_mode,
245: p_validation_start_date => p_validation_start_date,
246: p_validation_end_date => p_validation_end_date);
247: --
248: hr_utility.set_location(' Leaving:'||l_proc, 10);
249: End pre_delete;
250: --
251: -- ----------------------------------------------------------------------------
252: -- |-----------------------------< post_delete >------------------------------|

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

289: --
290: l_proc varchar2(72) := g_package||'post_delete';
291: --
292: Begin
293: hr_utility.set_location('Entering:'||l_proc, 5);
294: --
295: --
296: -- Start of API User Hook for post_delete.
297: --

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

374: --
375: -- End of API User Hook for post_delete.
376: --
377: --
378: hr_utility.set_location(' Leaving:'||l_proc, 10);
379: End post_delete;
380: --
381: -- ----------------------------------------------------------------------------
382: -- |---------------------------------< del >----------------------------------|

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

392: l_validation_start_date date;
393: l_validation_end_date date;
394: --
395: Begin
396: hr_utility.set_location('Entering:'||l_proc, 5);
397: --
398: -- Ensure that the DateTrack delete mode is valid
399: --
400: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);

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

462: l_rec ben_ecv_shd.g_rec_type;
463: l_proc varchar2(72) := g_package||'del';
464: --
465: Begin
466: hr_utility.set_location('Entering:'||l_proc, 5);
467: --
468: -- As the delete procedure accepts a plsql record structure we do need to
469: -- convert the arguments into the record structure.
470: -- We don't need to call the supplied conversion argument routine as we

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

483: p_object_version_number := l_rec.object_version_number;
484: p_effective_start_date := l_rec.effective_start_date;
485: p_effective_end_date := l_rec.effective_end_date;
486: --
487: hr_utility.set_location(' Leaving:'||l_proc, 10);
488:
489: end del;
490: --
491: end ben_ecv_del;