DBA Data[Home] [Help]

APPS.PER_EQT_INS dependencies on HR_UTILITY

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

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

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

204: );
205: --
206: per_eqt_shd.g_api_dml := false; -- Unset the api dml status
207: --
208: hr_utility.set_location(' Leaving:'||l_proc, 10);
209: Exception
210: When hr_api.check_integrity_violated Then
211: -- A check constraint has been violated
212: per_eqt_shd.g_api_dml := false; -- Unset the api dml status

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

272: select per_qualification_types_s.nextval
273: from sys.dual;
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);
277: --
278: open c1;
279: --
280: fetch c1 into p_rec.qualification_type_id;

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

280: fetch c1 into p_rec.qualification_type_id;
281: --
282: close c1;
283: --
284: hr_utility.set_location(' Leaving:'||l_proc, 10);
285: End pre_insert;
286: --
287: -- ----------------------------------------------------------------------------
288: -- |-----------------------------< post_insert >------------------------------|

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

324: --
325: l_proc varchar2(72) := g_package||'post_insert';
326: --
327: Begin
328: hr_utility.set_location('Entering:'||l_proc, 5);
329: --
330: -- Start of API User Hook for post_insert.
331: Begin
332: per_eqt_rki.after_insert

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

407: );
408: end;
409: -- End of API User Hook for post_insert.
410: --
411: hr_utility.set_location(' Leaving:'||l_proc, 10);
412: End post_insert;
413: --
414: -- ----------------------------------------------------------------------------
415: -- |---------------------------------< ins >----------------------------------|

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

423: --
424: l_proc varchar2(72) := g_package||'ins';
425: --
426: Begin
427: hr_utility.set_location('Entering:'||l_proc, 5);
428: --
429: -- Determine if the business process is to be validated.
430: --
431: If p_validate then

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

458: If p_validate then
459: Raise HR_Api.Validate_Enabled;
460: End If;
461: --
462: hr_utility.set_location(' Leaving:'||l_proc, 10);
463: Exception
464: When HR_Api.Validate_Enabled Then
465: --
466: -- As the Validate_Enabled exception has been raised

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

553: l_rec per_eqt_shd.g_rec_type;
554: l_proc varchar2(72) := g_package||'ins';
555: --
556: Begin
557: hr_utility.set_location('Entering:'||l_proc, 5);
558: --
559: -- Call conversion function to turn arguments into the
560: -- p_rec structure.
561: --

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

641: --
642: p_qualification_type_id := l_rec.qualification_type_id;
643: p_object_version_number := l_rec.object_version_number;
644: --
645: hr_utility.set_location(' Leaving:'||l_proc, 10);
646: End ins;
647: --
648: end per_eqt_ins;