DBA Data[Home] [Help]

APPS.BEN_PCP_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_pcp_shd.g_api_dml := true; -- Set the api dml status
64: --

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

160: );
161: --
162: ben_pcp_shd.g_api_dml := false; -- Unset the api dml status
163: --
164: hr_utility.set_location(' Leaving:'||l_proc, 10);
165: Exception
166: When hr_api.check_integrity_violated Then
167: -- A check constraint has been violated
168: ben_pcp_shd.g_api_dml := false; -- Unset the api dml status

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

228: --
229: Cursor C_Sel1 is select ben_pl_pcp_s.nextval from sys.dual;
230: --
231: Begin
232: hr_utility.set_location('Entering:'||l_proc, 5);
233: --
234: --
235: -- Select the next sequence number
236: --

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

237: Open C_Sel1;
238: Fetch C_Sel1 Into p_rec.pl_pcp_id;
239: Close C_Sel1;
240: --
241: hr_utility.set_location(' Leaving:'||l_proc, 10);
242: End pre_insert;
243: --
244: -- ----------------------------------------------------------------------------
245: -- |-----------------------------< post_insert >------------------------------|

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

279: --
280: l_proc varchar2(72) := g_package||'post_insert';
281: --
282: Begin
283: hr_utility.set_location('Entering:'||l_proc, 5);
284: begin
285: --
286: ben_pcp_rki.after_insert
287: (p_pl_pcp_id

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

385: ,p_hook_type => 'AI');
386: --
387: end;
388: --
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: End post_insert;
391: --
392: -- ----------------------------------------------------------------------------
393: -- |---------------------------------< ins >----------------------------------|

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

398: --
399: l_proc varchar2(72) := g_package||'ins';
400: --
401: Begin
402: hr_utility.set_location('Entering:'||l_proc, 5);
403: --
404: -- Call the supporting insert validate operations
405: --
406: ben_pcp_bus.insert_validate

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

420: ben_pcp_ins.post_insert
421: (p_rec
422: );
423: --
424: hr_utility.set_location('Leaving:'||l_proc, 20);
425: end ins;
426: --
427: -- ----------------------------------------------------------------------------
428: -- |---------------------------------< ins >----------------------------------|

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

479: l_rec ben_pcp_shd.g_rec_type;
480: l_proc varchar2(72) := g_package||'ins';
481: --
482: Begin
483: hr_utility.set_location('Entering:'||l_proc, 5);
484: --
485: -- Call conversion function to turn arguments into the
486: -- p_rec structure.
487: --

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

546: --
547: p_pl_pcp_id := l_rec.pl_pcp_id;
548: p_object_version_number := l_rec.object_version_number;
549: --
550: hr_utility.set_location(' Leaving:'||l_proc, 10);
551: End ins;
552: --
553: end ben_pcp_ins;