DBA Data[Home] [Help]

APPS.BEN_XDD_BUS dependencies on HR_UTILITY

Line 34: hr_utility.set_location('Entering:'|| l_proc, 10);

30: l_proc varchar2(72) := g_package||'set_security_group_id';
31: --
32: begin
33: --
34: hr_utility.set_location('Entering:'|| l_proc, 10);
35: --
36: -- Ensure that all the mandatory parameter are not null
37: --
38: hr_api.mandatory_arg_error

Line 65: hr_utility.set_location(' Leaving:'|| l_proc, 20);

61: hr_api.set_security_group_id
62: (p_security_group_id => l_security_group_id
63: );
64: --
65: hr_utility.set_location(' Leaving:'|| l_proc, 20);
66: --
67: end set_security_group_id;
68: --
69: --

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

100: l_api_updating boolean;
101: --
102: Begin
103: --
104: hr_utility.set_location('Entering:'||l_proc, 5);
105: --
106: l_api_updating := ben_xdd_shd.api_updating
107: (p_ext_data_elmt_decd_id => p_ext_data_elmt_decd_id,
108: p_object_version_number => p_object_version_number);

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

128: end if;
129: --
130: end if;
131: --
132: hr_utility.set_location('Leaving:'||l_proc, 10);
133: --
134: End chk_ext_data_elmt_decd_id;
135: --
136: -- ----------------------------------------------------------------------------

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

172: where a.ext_data_elmt_id = p_ext_data_elmt_id;
173: --
174: Begin
175: --
176: hr_utility.set_location('Entering:'||l_proc,5);
177: --
178: l_api_updating := ben_xdd_shd.api_updating
179: (p_ext_data_elmt_decd_id => p_ext_data_elmt_decd_id,
180: p_object_version_number => p_object_version_number);

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

203: close c1;
204: --
205: end if;
206: --
207: hr_utility.set_location('Leaving:'||l_proc,10);
208: --
209: End chk_ext_data_elmt_id;
210: --
211: -- ----------------------------------------------------------------------------

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

261: )
262: ;
263: --
264: Begin
265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: open c1;
268: fetch c1 into l_dummy;
269: if c1%found then

Line 276: hr_utility.set_location('Leaving:'||l_proc, 15);

272: fnd_message.raise_error;
273: end if;
274: --
275: close c1;
276: hr_utility.set_location('Leaving:'||l_proc, 15);
277: End chk_val_unique;
278: --
279: -- ----------------------------------------------------------------------------
280: -- |------------------------< chk_ifvalue_replace_null >---------------------------------|

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

306: is
307: l_proc varchar2(72) := g_package||'chk_ifvalue_replace_null';
308: --
309: Begin
310: hr_utility.set_location('Entering:'||l_proc, 5);
311: --
312: if p_val is not null and p_dcd_val is null then
313: fnd_message.set_name('BEN','BEN_92119_IFVALUE_REPLACE_ERR');
314: fnd_message.raise_error;

Line 317: hr_utility.set_location('Leaving:'||l_proc, 15);

313: fnd_message.set_name('BEN','BEN_92119_IFVALUE_REPLACE_ERR');
314: fnd_message.raise_error;
315: end if;
316: --
317: hr_utility.set_location('Leaving:'||l_proc, 15);
318: End chk_ifvalue_replace_null;
319: --
320: -- ----------------------------------------------------------------------------
321: -- |------------------------< chk_replace_ifvalue_null >---------------------------------|

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

347: is
348: l_proc varchar2(72) := g_package||'chk_replace_ifvalue_null';
349: --
350: Begin
351: hr_utility.set_location('Entering:'||l_proc, 5);
352: --
353: if p_dcd_val is not null and p_val is null then
354: fnd_message.set_name('BEN','BEN_92120_IFVALUE_REPLACE_ERR');
355: fnd_message.raise_error;

Line 358: hr_utility.set_location('Leaving:'||l_proc, 15);

354: fnd_message.set_name('BEN','BEN_92120_IFVALUE_REPLACE_ERR');
355: fnd_message.raise_error;
356: end if;
357: --
358: hr_utility.set_location('Leaving:'||l_proc, 15);
359: End chk_replace_ifvalue_null;
360: --
361: -- ----------------------------------------------------------------------------
362: -- |----------------------< chk_startup_action >------------------------------|

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

413: --
414: l_proc varchar2(72) := g_package||'insert_validate';
415: --
416: Begin
417: hr_utility.set_location('Entering:'||l_proc, 5);
418: --
419: -- Call all supporting business operations
420: --
421: --

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

449: chk_replace_ifvalue_null
450: (p_val => p_rec.val,
451: p_dcd_val => p_rec.dcd_val);
452: --
453: hr_utility.set_location(' Leaving:'||l_proc, 10);
454: End insert_validate;
455: --
456: -- ----------------------------------------------------------------------------
457: -- |---------------------------< update_validate >----------------------------|

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

460: --
461: l_proc varchar2(72) := g_package||'update_validate';
462: --
463: Begin
464: hr_utility.set_location('Entering:'||l_proc, 5);
465: --
466: -- Call all supporting business operations
467: --
468: --

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

496: chk_replace_ifvalue_null
497: (p_val => p_rec.val,
498: p_dcd_val => p_rec.dcd_val);
499: --
500: hr_utility.set_location(' Leaving:'||l_proc, 10);
501: End update_validate;
502: --
503: -- ----------------------------------------------------------------------------
504: -- |---------------------------< delete_validate >----------------------------|

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

507: --
508: l_proc varchar2(72) := g_package||'delete_validate';
509: --
510: Begin
511: hr_utility.set_location('Entering:'||l_proc, 5);
512: --
513: -- Call all supporting business operations
514: --
515: chk_startup_action(False

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

515: chk_startup_action(False
516: ,ben_xdd_shd.g_old_rec.business_group_id
517: ,ben_xdd_shd.g_old_rec.legislation_code);
518: --
519: hr_utility.set_location(' Leaving:'||l_proc, 10);
520: End delete_validate;
521: --
522: --
523: -- ---------------------------------------------------------------------------

Line 546: hr_utility.set_location('Entering:'|| l_proc, 10);

542: l_proc varchar2(72) := g_package||'return_legislation_code';
543: --
544: begin
545: --
546: hr_utility.set_location('Entering:'|| l_proc, 10);
547: --
548: -- Ensure that all the mandatory parameter are not null
549: --
550: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 571: hr_utility.set_location(' Leaving:'|| l_proc, 20);

567: end if;
568: --
569: close csr_leg_code;
570: --
571: hr_utility.set_location(' Leaving:'|| l_proc, 20);
572: --
573: return l_legislation_code;
574: --
575: end return_legislation_code;