DBA Data[Home] [Help]

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

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

108: );
109: --
110: ben_bli_shd.g_api_dml := false; -- Unset the api dml status
111: --
112: hr_utility.set_location(' Leaving:'||l_proc, 10);
113: Exception
114: When hr_api.check_integrity_violated Then
115: -- A check constraint has been violated
116: ben_bli_shd.g_api_dml := false; -- Unset the api dml status

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

174: --
175: Cursor C_Sel1 is select ben_batch_ler_info_s.nextval from sys.dual;
176: --
177: Begin
178: hr_utility.set_location('Entering:'||l_proc, 5);
179: --
180: --
181: -- Select the next sequence number
182: --

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

183: Open C_Sel1;
184: Fetch C_Sel1 Into p_rec.batch_ler_id;
185: Close C_Sel1;
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 10);
188: End pre_insert;
189: --
190: -- ----------------------------------------------------------------------------
191: -- |-----------------------------< post_insert >------------------------------|

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

224: --
225: l_proc varchar2(72) := g_package||'post_insert';
226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: --
230: --
231: -- Start of API User Hook for post_insert.
232: --

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

267: --
268: -- End of API User Hook for post_insert.
269: --
270: --
271: hr_utility.set_location(' Leaving:'||l_proc, 10);
272: End post_insert;
273: --
274: -- ----------------------------------------------------------------------------
275: -- |---------------------------------< ins >----------------------------------|

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

282: --
283: l_proc varchar2(72) := g_package||'ins';
284: --
285: Begin
286: hr_utility.set_location('Entering:'||l_proc, 5);
287: --
288: -- Call the supporting insert validate operations
289: --
290: ben_bli_bus.insert_validate(p_rec,p_effective_date);

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

334: l_rec ben_bli_shd.g_rec_type;
335: l_proc varchar2(72) := g_package||'ins';
336: --
337: Begin
338: hr_utility.set_location('Entering:'||l_proc, 5);
339: --
340: -- Call conversion function to turn arguments into the
341: -- p_rec structure.
342: --

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

375: --
376: p_batch_ler_id := l_rec.batch_ler_id;
377: p_object_version_number := l_rec.object_version_number;
378: --
379: hr_utility.set_location(' Leaving:'||l_proc, 10);
380: End ins;
381: --
382: end ben_bli_ins;