DBA Data[Home] [Help]

APPS.BEN_XCR_INS dependencies on HR_UTILITY

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

109: --
110: l_proc varchar2(72) := g_package||'insert_dml';
111: --
112: Begin
113: hr_utility.set_location('Entering:'||l_proc, 5);
114: p_rec.object_version_number := 1; -- Initialise the object version
115: --
116: ben_xcr_shd.g_api_dml := true; -- Set the api dml status
117: --

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

207: );
208: --
209: ben_xcr_shd.g_api_dml := false; -- Unset the api dml status
210: --
211: hr_utility.set_location(' Leaving:'||l_proc, 10);
212: Exception
213: When hr_api.check_integrity_violated Then
214: -- A check constraint has been violated
215: ben_xcr_shd.g_api_dml := false; -- Unset the api dml status

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

273: --
274: Cursor C_Sel1 is select ben_ext_crit_prfl_s.nextval from sys.dual;
275: --
276: Begin
277: hr_utility.set_location('Entering:'||l_proc, 5);
278: --
279: --
280: -- Select the next sequence number
281: --

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

282: Open C_Sel1;
283: Fetch C_Sel1 Into p_rec.ext_crit_prfl_id;
284: Close C_Sel1;
285: --
286: hr_utility.set_location(' Leaving:'||l_proc, 10);
287: End pre_insert;
288: --
289: -- ----------------------------------------------------------------------------
290: -- |-----------------------------< post_insert >------------------------------|

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

322: --
323: l_proc varchar2(72) := g_package||'post_insert';
324: --
325: Begin
326: hr_utility.set_location('Entering:'||l_proc, 5);
327: --
328: create_app_ownerships('EXT_CRIT_PRFL_ID', p_rec.ext_crit_prfl_id);
329: --
330: -- Start of API User Hook for post_insert.

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

385: --
386: -- End of API User Hook for post_insert.
387: --
388: --
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: End post_insert;
391: --
392: -- ----------------------------------------------------------------------------
393: -- |---------------------------------< ins >----------------------------------|

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

399: --
400: l_proc varchar2(72) := g_package||'ins';
401: --
402: Begin
403: hr_utility.set_location('Entering:'||l_proc, 5);
404: --
405: -- Call the supporting insert validate operations
406: --
407: ben_xcr_bus.insert_validate(p_rec);

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

471: l_rec ben_xcr_shd.g_rec_type;
472: l_proc varchar2(72) := g_package||'ins';
473: --
474: Begin
475: hr_utility.set_location('Entering:'||l_proc, 5);
476: --
477: -- Call conversion function to turn arguments into the
478: -- p_rec structure.
479: --

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

534: --
535: p_ext_crit_prfl_id := l_rec.ext_crit_prfl_id;
536: p_object_version_number := l_rec.object_version_number;
537: --
538: hr_utility.set_location(' Leaving:'||l_proc, 10);
539: End ins;
540: --
541: end ben_xcr_ins;