DBA Data[Home] [Help]

APPS.BEN_OPI_INS dependencies on HR_UTILITY

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

48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: --
56: -- Insert the row into: ben_opt_extra_info

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

180: p_rec.object_version_number
181: );
182: --
183: --
184: hr_utility.set_location(' Leaving:'||l_proc, 10);
185: Exception
186: When hr_api.check_integrity_violated Then
187: -- A check constraint has been violated
188: ben_opi_shd.constraint_error

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

242: --
243: Cursor C_Sel1 is select ben_opt_extra_info_s.nextval from sys.dual;
244: --
245: Begin
246: hr_utility.set_location('Entering:'||l_proc, 5);
247: --
248: --
249: -- Select the next sequence number
250: --

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

251: Open C_Sel1;
252: Fetch C_Sel1 Into p_rec.opt_extra_info_id;
253: Close C_Sel1;
254: --
255: hr_utility.set_location(' Leaving:'||l_proc, 10);
256: End pre_insert;
257: --
258: -- ----------------------------------------------------------------------------
259: -- |-----------------------------< post_insert >------------------------------|

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

291: --
292: l_proc varchar2(72) := g_package||'post_insert';
293: --
294: Begin
295: hr_utility.set_location('Entering:'||l_proc, 5);
296: --
297: -- This is a hook point and the user hook for post_insert is called here.
298: --
299: begin

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

365: ,p_hook_type => 'AI'
366: );
367: end;
368: -- End of API User Hook for post_insert.
369: hr_utility.set_location(' Leaving:'||l_proc, 10);
370: End post_insert;
371: --
372: -- ----------------------------------------------------------------------------
373: -- |---------------------------------< ins >----------------------------------|

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

380: --
381: l_proc varchar2(72) := g_package||'ins';
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: --
386: -- Determine if the business process is to be validated.
387: --
388: If p_validate then

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

413: If p_validate then
414: Raise HR_Api.Validate_Enabled;
415: End If;
416: --
417: hr_utility.set_location(' Leaving:'||l_proc, 10);
418: Exception
419: When HR_Api.Validate_Enabled Then
420: --
421: -- As the Validate_Enabled exception has been raised

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

495: l_rec ben_opi_shd.g_rec_type;
496: l_proc varchar2(72) := g_package||'ins';
497: --
498: Begin
499: hr_utility.set_location('Entering:'||l_proc, 5);
500: --
501: -- Call conversion function to turn arguments into the
502: -- p_rec structure.
503: --

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

576: --
577: p_opt_extra_info_id := l_rec.opt_extra_info_id;
578: p_object_version_number := l_rec.object_version_number;
579: --
580: hr_utility.set_location(' Leaving:'||l_proc, 10);
581: End ins;
582: --
583: end ben_opi_ins;