DBA Data[Home] [Help]

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

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

172: );
173: --
174: ben_crt_shd.g_api_dml := false; -- Unset the api dml status
175: --
176: hr_utility.set_location(' Leaving:'||l_proc, 10);
177: Exception
178: When hr_api.check_integrity_violated Then
179: -- A check constraint has been violated
180: ben_crt_shd.g_api_dml := false; -- Unset the api dml status

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

238: --
239: Cursor C_Sel1 is select ben_crt_ordr_s.nextval from sys.dual;
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: --
245: -- Select the next sequence number
246: --

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

247: Open C_Sel1;
248: Fetch C_Sel1 Into p_rec.crt_ordr_id;
249: Close C_Sel1;
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: End pre_insert;
253: --
254: -- ----------------------------------------------------------------------------
255: -- |-----------------------------< insert >------------------------------|

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

290: l_old_rec ben_crt_ler.g_crt_ler_rec ;
291: l_new_rec ben_crt_ler.g_crt_ler_rec ;
292: --
293: Begin
294: hr_utility.set_location('Entering:'||l_proc, 5);
295: --
296: --
297: -- Start of API User Hook for post_insert.
298: --

Line 369: hr_utility.set_location('D M Modie crt ' ||hr_general.g_data_migrator_mode , 378);

365: ,p_pl_typ_id =>p_rec.pl_typ_id
366: ,p_effective_date =>p_effective_date
367: );
368: --
369: hr_utility.set_location('D M Modie crt ' ||hr_general.g_data_migrator_mode , 378);
370: if hr_general.g_data_migrator_mode not in ( 'Y','P') then
371: hr_utility.set_location(' calling ler check in iensert ' , 1408379 );
372: -- bug 1408379 the function calling moved from triiger to here
373: ben_crt_ler.ler_chk(p_old => l_old_rec,

Line 371: hr_utility.set_location(' calling ler check in iensert ' , 1408379 );

367: );
368: --
369: hr_utility.set_location('D M Modie crt ' ||hr_general.g_data_migrator_mode , 378);
370: if hr_general.g_data_migrator_mode not in ( 'Y','P') then
371: hr_utility.set_location(' calling ler check in iensert ' , 1408379 );
372: -- bug 1408379 the function calling moved from triiger to here
373: ben_crt_ler.ler_chk(p_old => l_old_rec,
374: p_new => l_new_rec ,
375: p_effective_date => p_effective_date );

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

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

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

401: --
402: l_proc varchar2(72) := g_package||'ins';
403: --
404: Begin
405: hr_utility.set_location('Entering:'||l_proc, 5);
406: --
407:
408: ben_crt_bus.insert_validate(p_rec => p_rec
409: ,p_effective_date => p_effective_date);

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

484: l_rec ben_crt_shd.g_rec_type;
485: l_proc varchar2(72) := g_package||'ins';
486: --
487: Begin
488: hr_utility.set_location('Entering:'||l_proc, 5);
489: --
490: -- Call conversion function to turn arguments into the
491: -- p_rec structure.
492: --

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

558: --
559: p_crt_ordr_id := l_rec.crt_ordr_id;
560: p_object_version_number := l_rec.object_version_number;
561: --
562: hr_utility.set_location(' Leaving:'||l_proc, 10);
563: End ins;
564: --
565: end ben_crt_ins;