DBA Data[Home] [Help]

APPS.BEN_PTY_INS dependencies on HR_UTILITY

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

56: --
57: l_proc varchar2(72) := g_package||'insert_dml';
58: --
59: Begin
60: hr_utility.set_location('Entering:'||l_proc, 5);
61: p_rec.object_version_number := 1; -- Initialise the object version
62: --
63: ben_pty_shd.g_api_dml := true; -- Set the api dml status
64: --

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

148: );
149: --
150: ben_pty_shd.g_api_dml := false; -- Unset the api dml status
151: --
152: hr_utility.set_location(' Leaving:'||l_proc, 10);
153: Exception
154: When hr_api.check_integrity_violated Then
155: -- A check constraint has been violated
156: ben_pty_shd.g_api_dml := false; -- Unset the api dml status

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

216: --
217: Cursor C_Sel1 is select ben_pl_pcp_typ_s.nextval from sys.dual;
218: --
219: Begin
220: hr_utility.set_location('Entering:'||l_proc, 5);
221: --
222: --
223: -- Select the next sequence number
224: --

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

225: Open C_Sel1;
226: Fetch C_Sel1 Into p_rec.pl_pcp_typ_id;
227: Close C_Sel1;
228: --
229: hr_utility.set_location(' Leaving:'||l_proc, 10);
230: End pre_insert;
231: --
232: -- ----------------------------------------------------------------------------
233: -- |-----------------------------< post_insert >------------------------------|

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

267: --
268: l_proc varchar2(72) := g_package||'post_insert';
269: --
270: Begin
271: hr_utility.set_location('Entering:'||l_proc, 5);
272: begin
273: --
274: ben_pty_rki.after_insert
275: (p_pl_pcp_typ_id

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

361: ,p_hook_type => 'AI');
362: --
363: end;
364: --
365: hr_utility.set_location(' Leaving:'||l_proc, 10);
366: End post_insert;
367: --
368: -- ----------------------------------------------------------------------------
369: -- |---------------------------------< ins >----------------------------------|

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

375: --
376: l_proc varchar2(72) := g_package||'ins';
377: --
378: Begin
379: hr_utility.set_location('Entering:'||l_proc, 5);
380: --
381: -- Call the supporting insert validate operations
382: --
383: ben_pty_bus.insert_validate

Line 401: hr_utility.set_location('Leaving:'||l_proc, 20);

397: ben_pty_ins.post_insert
398: (p_rec
399: );
400: --
401: hr_utility.set_location('Leaving:'||l_proc, 20);
402: end ins;
403: --
404: -- ----------------------------------------------------------------------------
405: -- |---------------------------------< ins >----------------------------------|

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

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

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

511: --
512: p_pl_pcp_typ_id := l_rec.pl_pcp_typ_id;
513: p_object_version_number := l_rec.object_version_number;
514: --
515: hr_utility.set_location(' Leaving:'||l_proc, 10);
516: End ins;
517: --
518: end ben_pty_ins;