DBA Data[Home] [Help]

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

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

96: );
97: --
98: ben_bpi_shd.g_api_dml := false; -- Unset the api dml status
99: --
100: hr_utility.set_location(' Leaving:'||l_proc, 10);
101: Exception
102: When hr_api.check_integrity_violated Then
103: -- A check constraint has been violated
104: ben_bpi_shd.g_api_dml := false; -- Unset the api dml status

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

162: --
163: Cursor C_Sel1 is select ben_batch_proc_info_s.nextval from sys.dual;
164: --
165: Begin
166: hr_utility.set_location('Entering:'||l_proc, 5);
167: --
168: --
169: -- Select the next sequence number
170: --

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

171: Open C_Sel1;
172: Fetch C_Sel1 Into p_rec.batch_proc_id;
173: Close C_Sel1;
174: --
175: hr_utility.set_location(' Leaving:'||l_proc, 10);
176: End pre_insert;
177: --
178: -- ----------------------------------------------------------------------------
179: -- |-----------------------------< post_insert >------------------------------|

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

211: --
212: l_proc varchar2(72) := g_package||'post_insert';
213: --
214: Begin
215: hr_utility.set_location('Entering:'||l_proc, 5);
216: --
217: --
218: -- Start of API User Hook for post_insert.
219: --

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

247: --
248: -- End of API User Hook for post_insert.
249: --
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: End post_insert;
253: --
254: -- ----------------------------------------------------------------------------
255: -- |---------------------------------< ins >----------------------------------|

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

261: --
262: l_proc varchar2(72) := g_package||'ins';
263: --
264: Begin
265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: -- Call the supporting insert validate operations
268: --
269: ben_bpi_bus.insert_validate(p_rec);

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

305: l_rec ben_bpi_shd.g_rec_type;
306: l_proc varchar2(72) := g_package||'ins';
307: --
308: Begin
309: hr_utility.set_location('Entering:'||l_proc, 5);
310: --
311: -- Call conversion function to turn arguments into the
312: -- p_rec structure.
313: --

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

340: --
341: p_batch_proc_id := l_rec.batch_proc_id;
342: p_object_version_number := l_rec.object_version_number;
343: --
344: hr_utility.set_location(' Leaving:'||l_proc, 10);
345: End ins;
346: --
347: end ben_bpi_ins;