DBA Data[Home] [Help]

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

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

144: );
145: --
146: per_prv_shd.g_api_dml := false; -- Unset the api dml status
147: --
148: hr_utility.set_location(' Leaving:'||l_proc, 10);
149: Exception
150: When hr_api.check_integrity_violated Then
151: -- A check constraint has been violated
152: per_prv_shd.g_api_dml := false; -- Unset the api dml status

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

213: from sys.dual;
214: --
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 5);
218: --
219: --
220: open c_next_id;
221: fetch c_next_id into p_rec.performance_review_id;

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

220: open c_next_id;
221: fetch c_next_id into p_rec.performance_review_id;
222: close c_next_id;
223: --
224: hr_utility.set_location(' Leaving:'||l_proc, 10);
225: End pre_insert;
226: --
227: -- ----------------------------------------------------------------------------
228: -- |-----------------------------< post_insert >------------------------------|

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

260: --
261: l_proc varchar2(72) := g_package||'post_insert';
262: --
263: Begin
264: hr_utility.set_location('Entering:'||l_proc, 5);
265: --
266: --
267: -- Start of API User Hook for post_insert.
268: --

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

322: --
323: -- End of API User Hook for post_insert.
324: --
325: --
326: hr_utility.set_location(' Leaving:'||l_proc, 10);
327: End post_insert;
328: --
329: -- ----------------------------------------------------------------------------
330: -- |---------------------------------< ins >----------------------------------|

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

338: --
339: l_proc varchar2(72) := g_package||'ins';
340: --
341: Begin
342: hr_utility.set_location('Entering:'||l_proc, 5);
343: --
344: -- Determine if the business process is to be validated.
345: --
346: If p_validate then

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

370: If p_validate then
371: Raise HR_Api.Validate_Enabled;
372: End If;
373: --
374: hr_utility.set_location(' Leaving:'||l_proc, 10);
375: Exception
376: When HR_Api.Validate_Enabled Then
377: --
378: -- As the Validate_Enabled exception has been raised

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

431: l_rec per_prv_shd.g_rec_type;
432: l_proc varchar2(72) := g_package||'ins';
433: --
434: Begin
435: hr_utility.set_location('Entering:'||l_proc, 5);
436: --
437: -- Call conversion function to turn arguments into the
438: -- p_rec structure.
439: --

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

492: --
493: p_performance_review_id := l_rec.performance_review_id;
494: p_object_version_number := l_rec.object_version_number;
495: --
496: hr_utility.set_location(' Leaving:'||l_proc, 10);
497: End ins;
498: --
499: end per_prv_ins;