DBA Data[Home] [Help]

APPS.OTA_TRB_DEL dependencies on HR_UTILITY

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

54: --
55: l_proc varchar2(72) := g_package||'delete_dml';
56: --
57: Begin
58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: ota_trb_shd.g_api_dml := true; -- Set the api dml status
61: --
62: -- Delete the ota_resource_bookings row.

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

65: where resource_booking_id = p_rec.resource_booking_id;
66: --
67: ota_trb_shd.g_api_dml := false; -- Unset the api dml status
68: --
69: hr_utility.set_location(' Leaving:'||l_proc, 10);
70: --
71: Exception
72: When hr_api.child_integrity_violated then
73: -- Child integrity has been violated

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

115: --
116: l_proc varchar2(72) := g_package||'pre_delete';
117: --
118: Begin
119: hr_utility.set_location('Entering:'||l_proc, 5);
120: --
121: -- Check if resource exists in allocations
122: --
123: ota_trb_api_procedures.check_tra_resource_exists(p_rec.resource_booking_id);

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

130: --
131: ota_trb_api_procedures.check_if_tfl_exists(p_rec.resource_booking_id);
132: --
133: --
134: hr_utility.set_location(' Leaving:'||l_proc, 10);
135: End pre_delete;
136: --
137: -- ----------------------------------------------------------------------------
138: -- |-----------------------------< post_delete >------------------------------|

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

170: --
171: l_proc varchar2(72) := g_package||'post_delete';
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: begin
176: --
177: ota_trb_rkd.after_delete
178: (p_resource_booking_id

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

280: ,p_hook_type => 'AD');
281: --
282: end;
283: --
284: hr_utility.set_location(' Leaving:'||l_proc, 10);
285: End post_delete;
286: --
287: -- ----------------------------------------------------------------------------
288: -- |---------------------------------< del >----------------------------------|

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

293: --
294: l_proc varchar2(72) := g_package||'del';
295: --
296: Begin
297: hr_utility.set_location('Entering:'||l_proc, 5);
298: --
299: -- We must lock the row which we need to delete.
300: --
301: ota_trb_shd.lck

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

338: l_rec ota_trb_shd.g_rec_type;
339: l_proc varchar2(72) := g_package||'del';
340: --
341: Begin
342: hr_utility.set_location('Entering:'||l_proc, 5);
343: --
344: -- As the delete procedure accepts a plsql record structure we do need to
345: -- convert the arguments into the record structure.
346: -- We don't need to call the supplied conversion argument routine as we

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

354: -- business process
355: --
356: ota_trb_del.del(l_rec);
357: --
358: hr_utility.set_location(' Leaving:'||l_proc, 10);
359: End del;
360: --
361: end ota_trb_del;