DBA Data[Home] [Help]

APPS.PAY_EVG_BUS dependencies on HR_UTILITY

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

36: l_proc varchar2(72) := g_package||'set_security_group_id';
37: --
38: begin
39: --
40: hr_utility.set_location('Entering:'|| l_proc, 10);
41: --
42: -- Ensure that all the mandatory parameter are not null
43: --
44: hr_api.mandatory_arg_error

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

67: hr_api.set_security_group_id
68: (p_security_group_id => l_security_group_id
69: );
70: --
71: hr_utility.set_location(' Leaving:'|| l_proc, 20);
72: --
73: end set_security_group_id;
74: --
75: -- ---------------------------------------------------------------------------

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

96: l_proc varchar2(72) := g_package||'return_legislation_code';
97: --
98: Begin
99: --
100: hr_utility.set_location('Entering:'|| l_proc, 10);
101: --
102: -- Ensure that all the mandatory parameter are not null
103: --
104: hr_api.mandatory_arg_error

Line 118: hr_utility.set_location(l_proc, 20);

114: -- call to this function. Just return the value in the global
115: -- variable.
116: --
117: l_legislation_code := pay_evg_bus.g_legislation_code;
118: hr_utility.set_location(l_proc, 20);
119: else
120: --
121: -- The ID is different to the last call to this function
122: -- or this is the first call to this function.

Line 135: hr_utility.set_location(l_proc,30);

131: close csr_leg_code;
132: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
133: fnd_message.raise_error;
134: end if;
135: hr_utility.set_location(l_proc,30);
136: --
137: -- Set the global variables so the values are
138: -- available for the next call to this function.
139: --

Line 144: hr_utility.set_location(' Leaving:'|| l_proc, 40);

140: close csr_leg_code;
141: pay_evg_bus.g_event_group_id := p_event_group_id;
142: pay_evg_bus.g_legislation_code := l_legislation_code;
143: end if;
144: hr_utility.set_location(' Leaving:'|| l_proc, 40);
145: return l_legislation_code;
146: end return_legislation_code;
147: --
148: -- ----------------------------------------------------------------------------

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

261: and ( nvl(peg.legislation_code,p_rec.legislation_code)= p_rec.legislation_code);
262: --
263: begin
264: --
265: hr_utility.set_location('Entering:'|| l_proc, 1);
266: --
267: open C1;
268: fetch C1 into l_exists;
269: if C1%found then

Line 270: hr_utility.set_location(l_proc, 3);

266: --
267: open C1;
268: fetch C1 into l_exists;
269: if C1%found then
270: hr_utility.set_location(l_proc, 3);
271: -- row is not unique
272: close C1;
273: pay_evg_shd.constraint_error('PAY_EVENT_GROUPS_UK1');
274: end if;

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

273: pay_evg_shd.constraint_error('PAY_EVENT_GROUPS_UK1');
274: end if;
275: close C1;
276: --
277: hr_utility.set_location('Leaving:'|| l_proc, 10);
278: --
279: end chk_unique_key;
280: --
281: -- ----------------------------------------------------------------------------

Line 313: hr_utility.set_location(l_proc,30);

309: --
310: fnd_message.set_name('PAY','HR_xxxx_INVALID_EVENT_GROUP');
311: fnd_message.raise_error;
312: end if;
313: hr_utility.set_location(l_proc,30);
314: --
315: -- Set the global variables so the values are
316: -- available for the next call to this function.
317: --

Line 352: hr_utility.set_location(l_proc,30);

348: fnd_message.raise_error;
349: end if;
350: end if;
351: --
352: hr_utility.set_location(l_proc,30);
353: --
354: -- Set the global variables so the values are
355: -- available for the next call to this function.
356: --

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

400: --
401: l_proc varchar2(72) := g_package||'insert_validate';
402: --
403: Begin
404: hr_utility.set_location('Entering:'||l_proc, 5);
405: --
406: -- Call all supporting business operations
407: --
408: -- Commenting this out as business group can be null

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

415: --
416: chk_proration_type (p_effective_date => p_effective_date
417: ,p_rec => p_rec);
418: --
419: hr_utility.set_location(' Leaving:'||l_proc, 10);
420: End insert_validate;
421: --
422: -- ----------------------------------------------------------------------------
423: -- |---------------------------< update_validate >----------------------------|

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

429: --
430: l_proc varchar2(72) := g_package||'update_validate';
431: --
432: Begin
433: hr_utility.set_location('Entering:'||l_proc, 5);
434: --
435: -- Call all supporting business operations
436: --
437: -- Commenting this out as business group can be null

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

449: --
450: chk_proration_type (p_effective_date => p_effective_date
451: ,p_rec => p_rec);
452: --
453: hr_utility.set_location(' Leaving:'||l_proc, 10);
454: --
455: End update_validate;
456: --
457: -- ----------------------------------------------------------------------------

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

463: --
464: l_proc varchar2(72) := g_package||'delete_validate';
465: --
466: Begin
467: hr_utility.set_location('Entering:'||l_proc, 5);
468: --
469: -- Call all supporting business operations
470: --
471: chk_delete(p_event_group_id => p_rec.event_group_id);

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

469: -- Call all supporting business operations
470: --
471: chk_delete(p_event_group_id => p_rec.event_group_id);
472: --
473: hr_utility.set_location(' Leaving:'||l_proc, 10);
474: End delete_validate;
475: --
476: end pay_evg_bus;