DBA Data[Home] [Help]

APPS.PAY_PUC_BUS dependencies on HR_UTILITY

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

42: l_proc varchar2(72) := g_package||'set_security_group_id';
43: --
44: begin
45: --
46: hr_utility.set_location('Entering:'|| l_proc, 10);
47: --
48: -- Ensure that all the mandatory parameter are not null
49: --
50: hr_api.mandatory_arg_error

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

77: (p_security_group_id => l_security_group_id
78: );
79: end if;
80: --
81: hr_utility.set_location(' Leaving:'|| l_proc, 20);
82: --
83: end set_security_group_id;
84: --
85: -- ---------------------------------------------------------------------------

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

106: l_proc varchar2(72) := g_package||'return_legislation_code';
107: --
108: Begin
109: --
110: hr_utility.set_location('Entering:'|| l_proc, 10);
111: --
112: -- Ensure that all the mandatory parameter are not null
113: --
114: hr_api.mandatory_arg_error

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

124: -- call to this function. Just return the value in the global
125: -- variable.
126: --
127: l_legislation_code := pay_puc_bus.g_legislation_code;
128: hr_utility.set_location(l_proc, 20);
129: else
130: --
131: -- The ID is different to the last call to this function
132: -- or this is the first call to this function.

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

141: close csr_leg_code;
142: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
143: fnd_message.raise_error;
144: end if;
145: hr_utility.set_location(l_proc,30);
146: --
147: -- Set the global variables so the values are
148: -- available for the next call to this function.
149: --

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

150: close csr_leg_code;
151: pay_puc_bus.g_user_column_id := p_user_column_id;
152: pay_puc_bus.g_legislation_code := l_legislation_code;
153: end if;
154: hr_utility.set_location(' Leaving:'|| l_proc, 40);
155: return l_legislation_code;
156: end return_legislation_code;
157: --
158: -- ----------------------------------------------------------------------------

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

246: l_exists varchar2(1);
247: l_proc varchar2(100) := g_package || 'chk_legislation_code';
248: begin
249: --
250: hr_utility.set_location('Entering:'|| l_proc, 10);
251:
252: open csr_legislation_code;
253: fetch csr_legislation_code into l_exists ;
254:

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

258: fnd_message.raise_error;
259: end if;
260: close csr_legislation_code;
261:
262: hr_utility.set_location(' Leaving:'|| l_proc, 20);
263: --
264: exception
265: when app_exception.application_exception then
266: if hr_multi_message.exception_add

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

632: l_proc varchar2(72) := g_package||'insert_validate';
633: l_formula_warning boolean;
634: --
635: Begin
636: hr_utility.set_location('Entering:'||l_proc, 5);
637: --
638: -- Call all supporting business operations
639: --
640: --

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

697: ,p_legislation_code => p_rec.legislation_code
698: ,p_formula_warning => l_formula_warning
699: );
700: --
701: hr_utility.set_location(' Leaving:'||l_proc, 10);
702: End insert_validate;
703: --
704: -- ----------------------------------------------------------------------------
705: -- |---------------------------< update_validate >----------------------------|

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

711: --
712: l_proc varchar2(72) := g_package||'update_validate';
713: --
714: Begin
715: hr_utility.set_location('Entering:'||l_proc, 5);
716: --
717: -- Call all supporting business operations
718: --
719: --

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

762: ,p_legislation_code => p_rec.legislation_code
763: ,p_formula_warning => p_formula_warning
764: );
765: --
766: hr_utility.set_location(' Leaving:'||l_proc, 10);
767: End update_validate;
768: --
769: -- ----------------------------------------------------------------------------
770: -- |---------------------------< delete_validate >----------------------------|

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

775: --
776: l_proc varchar2(72) := g_package||'delete_validate';
777: --
778: Begin
779: hr_utility.set_location('Entering:'||l_proc, 5);
780: --
781: --
782: chk_startup_action(false
783: ,pay_puc_shd.g_old_rec.business_group_id

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

798: --
799: -- Call all supporting business operations
800: --
801: chk_delete(p_user_column_id => p_rec.user_column_id);
802: hr_utility.set_location(' Leaving:'||l_proc, 10);
803: End delete_validate;
804: --
805: end pay_puc_bus;