DBA Data[Home] [Help]

APPS.PQP_PVD_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: pqp_pvd_shd.g_api_dml := true; -- Set the api dml status
64: --

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

198: );
199: --
200: pqp_pvd_shd.g_api_dml := false; -- Unset the api dml status
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: Exception
204: When hr_api.check_integrity_violated Then
205: -- A check constraint has been violated
206: pqp_pvd_shd.g_api_dml := false; -- Unset the api dml status

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

266: --
267: Cursor C_Sel1 is select pqp_vehicle_details_s.nextval from sys.dual;
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: --
272: --
273: -- Select the next sequence number
274: --

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

275: Open C_Sel1;
276: Fetch C_Sel1 Into p_rec.vehicle_details_id;
277: Close C_Sel1;
278: --
279: hr_utility.set_location(' Leaving:'||l_proc, 10);
280: End pre_insert;
281: --
282: -- ----------------------------------------------------------------------------
283: -- |-----------------------------< post_insert >------------------------------|

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

318: --
319: l_proc varchar2(72) := g_package||'post_insert';
320: --
321: Begin
322: hr_utility.set_location('Entering:'||l_proc, 5);
323: begin
324: --
325: pqp_pvd_rki.after_insert
326: (p_effective_date => p_effective_date

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

463: ,p_hook_type => 'AI');
464: --
465: end;
466: --
467: hr_utility.set_location(' Leaving:'||l_proc, 10);
468: End post_insert;
469: --
470: -- ----------------------------------------------------------------------------
471: -- |---------------------------------< ins >----------------------------------|

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

477: --
478: l_proc varchar2(72) := g_package||'ins';
479: --
480: Begin
481: hr_utility.set_location('Entering:'||l_proc, 5);
482: --
483: -- Call the supporting insert validate operations
484: --
485: pqp_pvd_bus.insert_validate

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

501: (p_effective_date
502: ,p_rec
503: );
504: --
505: hr_utility.set_location('Leaving:'||l_proc, 20);
506: end ins;
507: --
508: -- ----------------------------------------------------------------------------
509: -- |---------------------------------< ins >----------------------------------|

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

579: l_rec pqp_pvd_shd.g_rec_type;
580: l_proc varchar2(72) := g_package||'ins';
581: --
582: Begin
583: hr_utility.set_location('Entering:'||l_proc, 5);
584: --
585: -- Call conversion function to turn arguments into the
586: -- p_rec structure.
587: --

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

666: --
667: p_vehicle_details_id := l_rec.vehicle_details_id;
668: p_object_version_number := l_rec.object_version_number;
669: --
670: hr_utility.set_location(' Leaving:'||l_proc, 10);
671: End ins;
672: --
673: end pqp_pvd_ins;