DBA Data[Home] [Help]

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

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

193: );
194: --
195: ben_egl_shd.g_api_dml := false; -- Unset the api dml status
196: --
197: hr_utility.set_location(' Leaving:'||l_proc, 10);
198: Exception
199: When hr_api.check_integrity_violated Then
200: -- A check constraint has been violated
201: ben_egl_shd.g_api_dml := false; -- Unset the api dml status

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

259: --
260: Cursor C_Sel1 is select ben_eligy_criteria_s.nextval from sys.dual;
261: --
262: Begin
263: hr_utility.set_location('Entering:'||l_proc, 5);
264: --
265: --
266: -- Select the next sequence number
267: --

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

268: Open C_Sel1;
269: Fetch C_Sel1 Into p_rec.eligy_criteria_id;
270: Close C_Sel1;
271: --
272: hr_utility.set_location(' Leaving:'||l_proc, 10);
273: End pre_insert;
274: --
275: -- ----------------------------------------------------------------------------
276: -- |-----------------------------< post_insert >------------------------------|

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

311: l_eligy_criteria_id ben_eligy_criteria.eligy_criteria_id%TYPE;
312: --
313: Begin
314:
315: hr_utility.set_location('Entering:'||l_proc, 5);
316: --
317: --
318: -- Start of API User Hook for post_insert.
319: --

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

399: --
400: -- End of API User Hook for post_insert.
401: --
402: --
403: hr_utility.set_location(' Leaving:'||l_proc, 10);
404: End post_insert;
405: --
406: -- ----------------------------------------------------------------------------
407: -- |---------------------------------< ins >----------------------------------|

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

414: --
415: l_proc varchar2(72) := g_package||'ins';
416: --
417: Begin
418: hr_utility.set_location('Entering:'||l_proc, 5);
419: --
420: -- Call the supporting insert validate operations
421: --
422: ben_egl_bus.insert_validate(p_rec

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

509: l_rec ben_egl_shd.g_rec_type;
510: l_proc varchar2(72) := g_package||'ins';
511: --
512: Begin
513: hr_utility.set_location('Entering:'||l_proc, 5);
514: --
515: -- Call conversion function to turn arguments into the
516: -- p_rec structure.
517: --

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

593: --
594: p_eligy_criteria_id := l_rec.eligy_criteria_id;
595: p_object_version_number := l_rec.object_version_number;
596: --
597: hr_utility.set_location(' Leaving:'||l_proc, 10);
598: End ins;
599: --
600: end ben_egl_ins;