DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

246: --
247: -- End of API User Hook for post_insert.
248: --
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 10);
251: End post_insert;
252: --
253: -- ----------------------------------------------------------------------------
254: -- |---------------------------------< 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_bdi_bus.insert_validate(p_rec,p_effective_date);

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

305: l_rec ben_bdi_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 343: hr_utility.set_location(' Leaving:'||l_proc, 10);

339: --
340: p_batch_dpnt_id := l_rec.batch_dpnt_id;
341: p_object_version_number := l_rec.object_version_number;
342: --
343: hr_utility.set_location(' Leaving:'||l_proc, 10);
344: End ins;
345: --
346: end ben_bdi_ins;