DBA Data[Home] [Help]

APPS.PAY_ITR_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_itr_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(801,'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_itr_bus.g_iterative_rule_id := p_iterative_rule_id;
142: pay_itr_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 208: hr_utility.set_location(l_proc, 7);

204: nvl(pay_itr_shd.g_old_rec.business_group_id, hr_api.g_number) then
205: l_argument := 'business_group_id';
206: raise l_error;
207: end if;
208: hr_utility.set_location(l_proc, 7);
209: --
210: if nvl(p_rec.iterative_rule_id, hr_api.g_number) <>
211: nvl(pay_itr_shd.g_old_rec.iterative_rule_id, hr_api.g_number) then
212: l_argument := 'iterative_rule_id';

Line 215: hr_utility.set_location(l_proc, 8);

211: nvl(pay_itr_shd.g_old_rec.iterative_rule_id, hr_api.g_number) then
212: l_argument := 'iterative_rule_id';
213: raise l_error;
214: end if;
215: hr_utility.set_location(l_proc, 8);
216: --
217: EXCEPTION
218: WHEN l_error THEN
219: hr_api.argument_changed_error

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

276: and pir.effective_end_date = p_validation_end_date ;
277: --
278: begin
279: --
280: hr_utility.set_location('Entering:'|| l_proc, 1);
281: --
282: open C1;
283: fetch C1 into l_exists;
284: if C1%found then

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

281: --
282: open C1;
283: fetch C1 into l_exists;
284: if C1%found then
285: hr_utility.set_location(l_proc, 3);
286: -- row is not unique
287: close C1;
288: pay_itr_shd.constraint_error('PAY_ITERATIVE_RULES_UK1');
289: end if;

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

288: pay_itr_shd.constraint_error('PAY_ITERATIVE_RULES_UK1');
289: end if;
290: close C1;
291: --
292: hr_utility.set_location('Leaving:'|| l_proc, 10);
293: --
294: end chk_unique_key;
295: --
296: -- ----------------------------------------------------------------------------

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

337: or ( p_validation_start_date < et.effective_start_date
338: and p_validation_end_date > et.effective_start_date) ) ;
339: --
340: begin
341: hr_utility.set_location('Entering:'|| l_proc, 1);
342: --
343: hr_api.mandatory_arg_error
344: (p_api_name => l_proc
345: ,p_argument => 'element_type_id'

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

348: --
349: open C1;
350: fetch C1 into l_exists;
351: if C1%notfound then
352: hr_utility.set_location(l_proc, 3);
353: close C1;
354: hr_utility.set_message(801, 'PAY_52908_ITR_ETYPE_ERROR');
355: hr_utility.raise_error;
356: end if;

Line 354: hr_utility.set_message(801, 'PAY_52908_ITR_ETYPE_ERROR');

350: fetch C1 into l_exists;
351: if C1%notfound then
352: hr_utility.set_location(l_proc, 3);
353: close C1;
354: hr_utility.set_message(801, 'PAY_52908_ITR_ETYPE_ERROR');
355: hr_utility.raise_error;
356: end if;
357: close C1;
358: --

Line 355: hr_utility.raise_error;

351: if C1%notfound then
352: hr_utility.set_location(l_proc, 3);
353: close C1;
354: hr_utility.set_message(801, 'PAY_52908_ITR_ETYPE_ERROR');
355: hr_utility.raise_error;
356: end if;
357: close C1;
358: --
359: hr_utility.set_location(l_proc, 2);

Line 359: hr_utility.set_location(l_proc, 2);

355: hr_utility.raise_error;
356: end if;
357: close C1;
358: --
359: hr_utility.set_location(l_proc, 2);
360: --
361: end chk_element_type_id;
362: --
363: -- ----------------------------------------------------------------------------

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

415: or ( p_validation_start_date < f.effective_start_date
416: and p_validation_end_date > f.effective_start_date) ) ;
417: --
418: begin
419: hr_utility.set_location('Entering : '|| l_proc, 1);
420: hr_api.mandatory_arg_error
421: (p_api_name => l_proc
422: ,p_argument => 'result_name'
423: ,p_argument_value => p_result_name

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

425: --
426: open C1;
427: fetch C1 into l_exists;
428: if C1%notfound then
429: hr_utility.set_location(l_proc, 3);
430: close C1;
431: hr_utility.set_message(801, 'PAY_52903_ITR_RESULT_ERROR');
432: hr_utility.raise_error;
433: end if;

Line 431: hr_utility.set_message(801, 'PAY_52903_ITR_RESULT_ERROR');

427: fetch C1 into l_exists;
428: if C1%notfound then
429: hr_utility.set_location(l_proc, 3);
430: close C1;
431: hr_utility.set_message(801, 'PAY_52903_ITR_RESULT_ERROR');
432: hr_utility.raise_error;
433: end if;
434: close C1;
435: --

Line 432: hr_utility.raise_error;

428: if C1%notfound then
429: hr_utility.set_location(l_proc, 3);
430: close C1;
431: hr_utility.set_message(801, 'PAY_52903_ITR_RESULT_ERROR');
432: hr_utility.raise_error;
433: end if;
434: close C1;
435: --
436: hr_utility.set_location('Leaving:'|| l_proc, 10);

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

432: hr_utility.raise_error;
433: end if;
434: close C1;
435: --
436: hr_utility.set_location('Leaving:'|| l_proc, 10);
437: end chk_result_name ;
438: --
439: -- ----------------------------------------------------------------------------
440: -- |--------------------------< chk_iterative_rule_cond >----------------------|

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

489: or ( p_validation_start_date < piv.effective_start_date
490: and p_validation_end_date > piv.effective_start_date) ) ;
491: --
492: begin
493: hr_utility.set_location('Entering:'|| l_proc, 1);
494: --
495: hr_api.mandatory_arg_error
496: (p_api_name => l_proc
497: ,p_argument => 'iterative_rule_type'

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

756: --
757: l_proc varchar2(72) := g_package||'insert_validate';
758: --
759: Begin
760: hr_utility.set_location('Entering:'||l_proc, 5);
761: --
762: IF hr_startup_data_api_support.g_startup_mode
763: NOT IN ('GENERIC','STARTUP') THEN
764: hr_api.validate_bus_grp_id(p_rec.business_group_id); -- Validate Bus Grp

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

794: ,p_validation_start_date => p_validation_start_date
795: ,p_validation_end_date => p_validation_end_date
796: );
797: --
798: hr_utility.set_location(' Leaving:'||l_proc, 10);
799: End insert_validate;
800: --
801: -- ----------------------------------------------------------------------------
802: -- |---------------------------< update_validate >----------------------------|

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

811: --
812: l_proc varchar2(72) := g_package||'update_validate';
813: --
814: Begin
815: hr_utility.set_location('Entering:'||l_proc, 5);
816: --
817: IF hr_startup_data_api_support.g_startup_mode
818:
819: NOT IN ('GENERIC','STARTUP') THEN

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

865: ,p_rec => p_rec
866: );
867: --
868: --
869: hr_utility.set_location(' Leaving:'||l_proc, 10);
870: End update_validate;
871: --
872: -- ----------------------------------------------------------------------------
873: -- |---------------------------< delete_validate >----------------------------|

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

882: --
883: l_proc varchar2(72) := g_package||'delete_validate';
884: --
885: Begin
886: hr_utility.set_location('Entering:'||l_proc, 5);
887: --
888: -- Call all supporting business operations
889: --
890: dt_delete_validate

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

893: ,p_validation_end_date => p_validation_end_date
894: ,p_iterative_rule_id => p_rec.iterative_rule_id
895: );
896: --
897: hr_utility.set_location(' Leaving:'||l_proc, 10);
898: End delete_validate;
899: --
900: end pay_itr_bus;