DBA Data[Home] [Help]

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

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

154: );
155: --
156: ben_epr_shd.g_api_dml := false; -- Unset the api dml status
157: --
158: hr_utility.set_location(' Leaving:'||l_proc, 10);
159: Exception
160: When hr_api.check_integrity_violated Then
161: -- A check constraint has been violated
162: ben_epr_shd.g_api_dml := false; -- Unset the api dml status

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

220: --
221: Cursor C_Sel1 is select ben_enrt_prem_s.nextval from sys.dual;
222: --
223: Begin
224: hr_utility.set_location('Entering:'||l_proc, 5);
225: --
226: --
227: -- Select the next sequence number
228: --

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

229: Open C_Sel1;
230: Fetch C_Sel1 Into p_rec.enrt_prem_id;
231: Close C_Sel1;
232: --
233: hr_utility.set_location(' Leaving:'||l_proc, 10);
234: End pre_insert;
235: --
236: -- ----------------------------------------------------------------------------
237: -- |-----------------------------< post_insert >------------------------------|

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

269: --
270: l_proc varchar2(72) := g_package||'post_insert';
271: --
272: Begin
273: hr_utility.set_location('Entering:'||l_proc, 5);
274: --
275: --
276: -- Start of API User Hook for post_insert.
277: --

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

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

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

350: --
351: l_proc varchar2(72) := g_package||'ins';
352: --
353: Begin
354: hr_utility.set_location('Entering:'||l_proc, 5);
355: --
356: -- Call the supporting insert validate operations
357: --
358: ben_epr_bus.insert_validate(p_rec);

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

423: l_rec ben_epr_shd.g_rec_type;
424: l_proc varchar2(72) := g_package||'ins';
425: --
426: Begin
427: hr_utility.set_location('Entering:'||l_proc, 5);
428: --
429: -- Call conversion function to turn arguments into the
430: -- p_rec structure.
431: --

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

487: --
488: p_enrt_prem_id := l_rec.enrt_prem_id;
489: p_object_version_number := l_rec.object_version_number;
490: --
491: hr_utility.set_location(' Leaving:'||l_proc, 10);
492: End ins;
493: --
494: end ben_epr_ins;