DBA Data[Home] [Help]

APPS.PAY_DTE_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_dte_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_dte_bus.g_datetracked_event_id:= p_datetracked_event_id;
142: pay_dte_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 278: hr_utility.set_location('Entering:'||l_proc, 5);

274: );
275: --
276: Begin
277: --
278: hr_utility.set_location('Entering:'||l_proc, 5);
279: --
280: If (p_rec.update_type = 'U')
281: Then
282: hr_api.mandatory_arg_error

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

299: Close csr_chk_column;
300: End If;
301: --
302: --
303: hr_utility.set_location(' Leaving:'||l_proc, 10);
304: end chk_columns;
305: --
306: -- ----------------------------------------------------------------------------
307: -- |---------------------------< chk_update_type >----------------------------|

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

357: --
358: fnd_message.set_name('PAY','HR_xxxx_INVALID_UPDATE_TYPE');
359: fnd_message.raise_error;
360: end if;
361: hr_utility.set_location(l_proc,30);
362: --
363: if p_rec.proration_style is not null then
364: if hr_api.not_exists_in_hrstanlookups(p_effective_date => p_effective_date
365: ,p_lookup_type => 'PAY_PRORATION_STYLE'

Line 374: hr_utility.set_location(l_proc,40);

370: fnd_message.set_name('PAY','HR_xxxx_INVALID_PRORATION_STL');
371: fnd_message.raise_error;
372: end if;
373: end if;
374: hr_utility.set_location(l_proc,40);
375: --
376: -- Set the global variables so the values are
377: -- available for the next call to this function.
378: --

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

388: --
389: l_proc varchar2(72) := g_package||'insert_validate';
390: --
391: Begin
392: hr_utility.set_location('Entering:'||l_proc, 5);
393: --
394: -- commenting this out as bus grp can be null
395: -- hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
396: --

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

398: ,p_rec => p_rec);
399: --
400: chk_columns (p_rec => p_rec);
401: --
402: hr_utility.set_location(' Leaving:'||l_proc, 10);
403: End insert_validate;
404: --
405: -- ----------------------------------------------------------------------------
406: -- |---------------------------< update_validate >----------------------------|

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

412: --
413: l_proc varchar2(72) := g_package||'update_validate';
414: --
415: Begin
416: hr_utility.set_location('Entering:'||l_proc, 5);
417: --
418: -- commenting this out as bus grp can be null
419: -- hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp
420: --

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

427: ,p_rec => p_rec);
428: --
429: chk_columns (p_rec => p_rec);
430: --
431: hr_utility.set_location(' Leaving:'||l_proc, 10);
432: --
433: End update_validate;
434: --
435: -- ----------------------------------------------------------------------------

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

441: --
442: l_proc varchar2(72) := g_package||'delete_validate';
443: --
444: Begin
445: hr_utility.set_location('Entering:'||l_proc, 5);
446: --
447: -- Call all supporting business operations
448: --
449: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

445: hr_utility.set_location('Entering:'||l_proc, 5);
446: --
447: -- Call all supporting business operations
448: --
449: hr_utility.set_location(' Leaving:'||l_proc, 10);
450: End delete_validate;
451: --
452: end pay_dte_bus;