DBA Data[Home] [Help]

APPS.PAY_PUR_DEL dependencies on HR_UTILITY

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

60: --
61: l_proc varchar2(72) := g_package||'dt_delete_dml';
62: --
63: Begin
64: hr_utility.set_location('Entering:'||l_proc, 5);
65: If (p_datetrack_mode = hr_api.g_delete_next_change) then
66: pay_pur_shd.g_api_dml := true; -- Set the api dml status
67: --
68: -- Delete the where the effective start date is equal

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

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

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

148: --
149: l_proc varchar2(72) := g_package||'delete_dml';
150: --
151: Begin
152: hr_utility.set_location('Entering:'||l_proc, 5);
153: --
154: pay_pur_del.dt_delete_dml
155: (p_rec => p_rec
156: ,p_effective_date => p_effective_date

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

158: ,p_validation_start_date => p_validation_start_date
159: ,p_validation_end_date => p_validation_end_date
160: );
161: --
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: End delete_dml;
164: --
165: -- ----------------------------------------------------------------------------
166: -- |----------------------------< dt_pre_delete >-----------------------------|

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

205: --
206: l_proc varchar2(72) := g_package||'dt_pre_delete';
207: --
208: Begin
209: hr_utility.set_location('Entering:'||l_proc, 5);
210: --
211: If (p_datetrack_mode <> hr_api.g_zap) then
212: --
213: p_rec.effective_start_date

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

232: Else
233: p_rec.effective_start_date := null;
234: p_rec.effective_end_date := null;
235: End If;
236: hr_utility.set_location(' Leaving:'||l_proc, 10);
237: End dt_pre_delete;
238: --
239: -- ----------------------------------------------------------------------------
240: -- |------------------------------< pre_delete >------------------------------|

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

281: --
282: --
283: --
284: Begin
285: hr_utility.set_location('Entering:'||l_proc, 5);
286: --
287: --
288: --
289: pay_pur_del.dt_pre_delete

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

293: ,p_validation_start_date => p_validation_start_date
294: ,p_validation_end_date => p_validation_end_date
295: );
296: --
297: hr_utility.set_location(' Leaving:'||l_proc, 10);
298: End pre_delete;
299: --
300: -- ----------------------------------------------------------------------------
301: -- |----------------------------< post_delete >-------------------------------|

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

340: --
341: l_proc varchar2(72) := g_package||'post_delete';
342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: begin
346: --
347: -- Delete ownerships if applicable
348: delete_app_ownerships

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

396: ,p_hook_type => 'AD');
397: --
398: end;
399: --
400: hr_utility.set_location(' Leaving:'||l_proc, 10);
401: End post_delete;
402: --
403: -- ----------------------------------------------------------------------------
404: -- |---------------------------------< del >----------------------------------|

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

414: l_validation_start_date date;
415: l_validation_end_date date;
416: --
417: Begin
418: hr_utility.set_location('Entering:'||l_proc, 5);
419: --
420: -- Ensure that the DateTrack delete mode is valid
421: --
422: dt_api.validate_dt_del_mode(p_datetrack_mode => p_datetrack_mode);

Line 482: hr_utility.set_location(' Leaving:'||l_proc, 5);

478: --
479: -- Call to raise any errors on multi-message list
480: hr_multi_message.end_validation_set;
481: --
482: hr_utility.set_location(' Leaving:'||l_proc, 5);
483: End del;
484: --
485: -- ----------------------------------------------------------------------------
486: -- |--------------------------------< del >-----------------------------------|

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

498: l_rec pay_pur_shd.g_rec_type;
499: l_proc varchar2(72) := g_package||'del';
500: --
501: Begin
502: hr_utility.set_location('Entering:'||l_proc, 5);
503: --
504: -- As the delete procedure accepts a plsql record structure we do need to
505: -- convert the arguments into the record structure.
506: -- We don't need to call the supplied conversion argument routine as we

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

526: p_object_version_number := l_rec.object_version_number;
527: p_effective_start_date := l_rec.effective_start_date;
528: p_effective_end_date := l_rec.effective_end_date;
529: --
530: hr_utility.set_location(' Leaving:'||l_proc, 10);
531: End del;
532: --
533: end pay_pur_del;