DBA Data[Home] [Help]

APPS.PER_EST_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_est_shd.g_api_dml := true; -- Set the api dml status
62: --

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

160: );
161: --
162: per_est_shd.g_api_dml := false; -- Unset the api dml status
163: --
164: hr_utility.set_location(' Leaving:'||l_proc, 10);
165: Exception
166: When hr_api.check_integrity_violated Then
167: -- A check constraint has been violated
168: per_est_shd.g_api_dml := false; -- Unset the api dml status

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

228: select per_establishments_s.nextval
229: from sys.dual;
230: --
231: Begin
232: hr_utility.set_location('Entering:'||l_proc, 5);
233: --
234: open c1;
235: --
236: fetch c1 into p_rec.establishment_id;

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

236: fetch c1 into p_rec.establishment_id;
237: --
238: close c1;
239: --
240: hr_utility.set_location(' Leaving:'||l_proc, 10);
241: End pre_insert;
242: --
243: -- ----------------------------------------------------------------------------
244: -- |-----------------------------< post_insert >------------------------------|

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

276: --
277: l_proc varchar2(72) := g_package||'post_insert';
278: --
279: Begin
280: hr_utility.set_location('Entering:'||l_proc, 5);
281: --
282: -- Start of API User Hook for post_insert.
283: Begin
284: per_est_rki.after_insert

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

337: );
338: end;
339: -- End of API User Hook for post_insert.
340: --
341: hr_utility.set_location(' Leaving:'||l_proc, 10);
342: End post_insert;
343: --
344: -- ----------------------------------------------------------------------------
345: -- |---------------------------------< ins >----------------------------------|

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

352: --
353: l_proc varchar2(72) := g_package||'ins';
354: --
355: Begin
356: hr_utility.set_location('Entering:'||l_proc, 5);
357: --
358: -- Determine if the business process is to be validated.
359: --
360: If p_validate then

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

385: If p_validate then
386: Raise HR_Api.Validate_Enabled;
387: End If;
388: --
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: Exception
391: When HR_Api.Validate_Enabled Then
392: --
393: -- As the Validate_Enabled exception has been raised

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

453: l_rec per_est_shd.g_rec_type;
454: l_proc varchar2(72) := g_package||'ins';
455: --
456: Begin
457: hr_utility.set_location('Entering:'||l_proc, 5);
458: --
459: -- Call conversion function to turn arguments into the
460: -- p_rec structure.
461: --

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

520: --
521: p_establishment_id := l_rec.establishment_id;
522: p_object_version_number := l_rec.object_version_number;
523: --
524: hr_utility.set_location(' Leaving:'||l_proc, 10);
525: End ins;
526: --
527: end per_est_ins;