DBA Data[Home] [Help]

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

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

178: );
179: --
180: ben_clf_shd.g_api_dml := false; -- Unset the api dml status
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: Exception
184: When hr_api.check_integrity_violated Then
185: -- A check constraint has been violated
186: ben_clf_shd.g_api_dml := false; -- Unset the api dml status

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

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

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

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

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

294: --
295: l_proc varchar2(72) := g_package||'post_insert';
296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);
299: --
300: --
301: -- Start of API User Hook for post_insert.
302: --

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

374: --
375: -- End of API User Hook for post_insert.
376: --
377: --
378: hr_utility.set_location(' Leaving:'||l_proc, 10);
379: End post_insert;
380: --
381: -- ----------------------------------------------------------------------------
382: -- |---------------------------------< ins >----------------------------------|

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

389: --
390: l_proc varchar2(72) := g_package||'ins';
391: --
392: Begin
393: hr_utility.set_location('Entering:'||l_proc, 5);
394: --
395: -- Call the supporting insert validate operations
396: --
397: ben_clf_bus.insert_validate(p_rec

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

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

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

555: --
556: p_comp_lvl_fctr_id := l_rec.comp_lvl_fctr_id;
557: p_object_version_number := l_rec.object_version_number;
558: --
559: hr_utility.set_location(' Leaving:'||l_proc, 10);
560: End ins;
561: --
562: end ben_clf_ins;