DBA Data[Home] [Help]

APPS.PAY_EVC_BUS dependencies on HR_UTILITY

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

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

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

72: (p_security_group_id => l_security_group_id
73: );
74: end if;
75: --
76: hr_utility.set_location(' Leaving:'|| l_proc, 20);
77: --
78: end set_security_group_id;
79: --
80: -- ---------------------------------------------------------------------------

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

101: l_proc varchar2(72) := g_package||'return_legislation_code';
102: --
103: Begin
104: --
105: hr_utility.set_location('Entering:'|| l_proc, 10);
106: --
107: -- Ensure that all the mandatory parameter are not null
108: --
109: hr_api.mandatory_arg_error

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

119: -- call to this function. Just return the value in the global
120: -- variable.
121: --
122: l_legislation_code := pay_evc_bus.g_legislation_code;
123: hr_utility.set_location(l_proc, 20);
124: else
125: --
126: -- The ID is different to the last call to this function
127: -- or this is the first call to this function.

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

136: close csr_leg_code;
137: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
138: fnd_message.raise_error;
139: end if;
140: hr_utility.set_location(l_proc,30);
141: --
142: -- Set the global variables so the values are
143: -- available for the next call to this function.
144: --

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

145: close csr_leg_code;
146: pay_evc_bus.g_event_value_change_id := p_event_value_change_id;
147: pay_evc_bus.g_legislation_code := l_legislation_code;
148: end if;
149: hr_utility.set_location(' Leaving:'|| l_proc, 40);
150: return l_legislation_code;
151: end return_legislation_code;
152: --
153: -- ----------------------------------------------------------------------------

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

291: --
292: l_proc varchar2(72) := g_package||'chk_default_event';
293: --
294: Begin
295: hr_utility.set_location('Entering:'||l_proc, 5);
296: --
297: -- Check that the mandatory effective date is not null.
298: --
299: hr_api.mandatory_arg_error

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

308: (p_lookup_type => 'YES_NO',
309: p_lookup_code => p_rec.default_event,
310: p_effective_date => p_effective_date)
311: then
312: hr_utility.set_location(' Leaving:'||l_proc, 10);
313: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
314: fnd_message.set_token('LOOKUP_TYPE', 'YES_NO');
315: fnd_message.set_token('VALUE', p_rec.default_event);
316: fnd_message.raise_error;

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

324: ,p_lookup_type => 'YES_NO'
325: ,p_lookup_code => p_rec.default_event
326: )
327: then
328: hr_utility.set_location(' Leaving:'||l_proc, 10);
329: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
330: fnd_message.set_token('LOOKUP_TYPE', 'YES_NO');
331: fnd_message.set_token('VALUE', p_rec.default_event);
332: fnd_message.raise_error;

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

331: fnd_message.set_token('VALUE', p_rec.default_event);
332: fnd_message.raise_error;
333: end if;
334: END IF;
335: hr_utility.set_location(' Leaving:'||l_proc, 20);
336: End chk_default_event;
337:
338: --
339: -- ----------------------------------------------------------------------------

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

368: --
369: l_proc varchar2(72) := g_package||'chk_valid_event';
370: --
371: Begin
372: hr_utility.set_location('Entering:'||l_proc, 5);
373: --
374: -- Check that the mandatory effective date is not null.
375: --
376: hr_api.mandatory_arg_error

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

385: (p_lookup_type => 'YES_NO',
386: p_lookup_code => p_rec.valid_event,
387: p_effective_date => p_effective_date)
388: then
389: hr_utility.set_location(' Leaving:'||l_proc, 10);
390: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
391: fnd_message.set_token('LOOKUP_TYPE', 'YES_NO');
392: fnd_message.set_token('VALUE', p_rec.valid_event);
393: fnd_message.raise_error;

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

401: ,p_lookup_type => 'YES_NO'
402: ,p_lookup_code => p_rec.valid_event
403: )
404: then
405: hr_utility.set_location(' Leaving:'||l_proc, 10);
406: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
407: fnd_message.set_token('LOOKUP_TYPE', 'YES_NO');
408: fnd_message.set_token('VALUE', p_rec.valid_event);
409: fnd_message.raise_error;

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

408: fnd_message.set_token('VALUE', p_rec.valid_event);
409: fnd_message.raise_error;
410: end if;
411: END IF;
412: hr_utility.set_location(' Leaving:'||l_proc, 20);
413: End chk_valid_event;
414:
415: --
416: -- ----------------------------------------------------------------------------

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

447: --
448: l_proc varchar2(72) := g_package||'chk_proration_style';
449: --
450: Begin
451: hr_utility.set_location('Entering:'||l_proc, 5);
452: --
453: -- Check that the mandatory effective date is not null.
454: --
455: hr_api.mandatory_arg_error

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

464: (p_lookup_type => 'PAY_PRORATION_STYLE',
465: p_lookup_code => p_rec.proration_style,
466: p_effective_date => p_effective_date)
467: then
468: hr_utility.set_location(' Leaving:'||l_proc, 10);
469: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
470: fnd_message.set_token('LOOKUP_TYPE', 'PAY_PRORATION_STYLE');
471: fnd_message.set_token('VALUE', p_rec.proration_style);
472: fnd_message.raise_error;

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

480: ,p_lookup_type => 'PAY_PRORATION_STYLE'
481: ,p_lookup_code => p_rec.proration_style
482: )
483: then
484: hr_utility.set_location(' Leaving:'||l_proc, 10);
485: fnd_message.set_name('PAY', 'INVALID_LOOKUP_CODE');
486: fnd_message.set_token('LOOKUP_TYPE', 'PAY_PRORATION_STYLE');
487: fnd_message.set_token('VALUE', p_rec.proration_style);
488: fnd_message.raise_error;

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

487: fnd_message.set_token('VALUE', p_rec.proration_style);
488: fnd_message.raise_error;
489: end if;
490: END IF;
491: hr_utility.set_location(' Leaving:'||l_proc, 20);
492: End chk_proration_style;
493:
494: --
495: -- ----------------------------------------------------------------------------

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

734: --
735: l_proc varchar2(72) := g_package||'insert_validate';
736: --
737: Begin
738: hr_utility.set_location('Entering:'||l_proc, 5);
739: --
740: -- Call all supporting business operations
741: --
742: --

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

771: chk_proration_style(p_rec, p_effective_date
772: ,p_validation_start_date ,p_validation_end_date);
773:
774: --
775: hr_utility.set_location(' Leaving:'||l_proc, 10);
776: End insert_validate;
777: --
778: -- ----------------------------------------------------------------------------
779: -- |---------------------------< update_validate >----------------------------|

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

788: --
789: l_proc varchar2(72) := g_package||'update_validate';
790: --
791: Begin
792: hr_utility.set_location('Entering:'||l_proc, 5);
793: --
794: -- Call all supporting business operations
795: --
796: --

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

840: ,p_rec => p_rec
841: );
842: --
843: --
844: hr_utility.set_location(' Leaving:'||l_proc, 10);
845: End update_validate;
846: --
847: -- ----------------------------------------------------------------------------
848: -- |---------------------------< delete_validate >----------------------------|

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

857: --
858: l_proc varchar2(72) := g_package||'delete_validate';
859: --
860: Begin
861: hr_utility.set_location('Entering:'||l_proc, 5);
862: --
863: --
864: chk_startup_action(false
865: ,pay_evc_shd.g_old_rec.business_group_id

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

886: ,p_validation_end_date => p_validation_end_date
887: ,p_event_value_change_id => p_rec.event_value_change_id
888: );
889: --
890: hr_utility.set_location(' Leaving:'||l_proc, 10);
891: End delete_validate;
892: --
893: end pay_evc_bus;