DBA Data[Home] [Help]

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

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

108: );
109: --
110: per_bil_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: per_bil_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 hr_summary_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.id_value;
185: Close C_Sel1;
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 10);
188: End pre_insert;
189: --
190: -- ----------------------------------------------------------------------------
191: -- |-----------------------------< post_insert >------------------------------|

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

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

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

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

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

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

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

334: l_rec per_bil_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_id_value := l_rec.id_value;
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 per_bil_ins;