DBA Data[Home] [Help]

APPS.PAY_PAY_BUS dependencies on HR_UTILITY

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

41: l_legislation_code varchar2(150);
42: --
43: begin
44: --
45: hr_utility.set_location('Entering:'|| l_proc, 10);
46: --
47: -- Ensure that all the mandatory parameters are not null
48: --
49: hr_api.mandatory_arg_error

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

81: hr_api.set_legislation_context(l_legislation_code);
82: --
83: end if;
84: --
85: hr_utility.set_location(' Leaving:'|| l_proc, 20);
86: --
87: end set_security_group_id;
88: --
89: -- ---------------------------------------------------------------------------

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

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

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

127: -- call to this function. Just return the value in the global
128: -- variable.
129: --
130: l_legislation_code := pay_pay_bus.g_legislation_code;
131: hr_utility.set_location(l_proc, 20);
132: --
133: else
134: --
135: -- The ID is different to the last call to this function

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

147: fnd_message.raise_error;
148: --
149: end if;
150: --
151: hr_utility.set_location(l_proc,30);
152: --
153: -- Set the global variables so the values are
154: -- available for the next call to this function.
155: --

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

157: pay_pay_bus.g_payroll_id := p_payroll_id;
158: pay_pay_bus.g_legislation_code := l_legislation_code;
159: --
160: end if;
161: hr_utility.set_location(' Leaving:'|| l_proc, 40);
162: return l_legislation_code;
163: --
164: end return_legislation_code;
165: --

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

198: --
199: l_proc varchar2(72) := g_package || 'chk_ddf';
200: --
201: begin
202: hr_utility.set_location('Entering:'||l_proc,10);
203: --
204: if ((p_rec.payroll_id is not null) and (
205: nvl(pay_pay_shd.g_old_rec.prl_information_category, hr_api.g_varchar2) <>
206: nvl(p_rec.prl_information_category, hr_api.g_varchar2) or

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

338: ,p_attribute30_value => p_rec.prl_information30
339: );
340: end if;
341: --
342: hr_utility.set_location(' Leaving:'||l_proc,20);
343: end chk_ddf;
344: --
345: -- ----------------------------------------------------------------------------
346: -- |------------------------------< chk_df >----------------------------------|

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

376: --
377: l_proc varchar2(72) := g_package || 'chk_df';
378: --
379: begin
380: hr_utility.set_location('Entering:'||l_proc,10);
381: --
382: if ((p_rec.payroll_id is not null) and (
383: nvl(pay_pay_shd.g_old_rec.attribute_category, hr_api.g_varchar2) <>
384: nvl(p_rec.attribute_category, hr_api.g_varchar2) or

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

476: );
477: --
478: end if;
479: --
480: hr_utility.set_location(' Leaving:'||l_proc,20);
481: --
482: end chk_df;
483: --
484: -- ----------------------------------------------------------------------------

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

797: Begin
798: --
799: -- Ensure that the p_datetrack_mode argument is not null
800: --
801: hr_utility.set_location('Entering:'||l_proc, 5);
802: hr_api.mandatory_arg_error
803: (p_api_name => l_proc
804: ,p_argument => 'datetrack_mode'
805: ,p_argument_value => p_datetrack_mode

Line 875: hr_utility.set_location('Leaving:'||l_proc, 50);

871: raise l_rows_exist;
872: --
873: End If;
874: --
875: hr_utility.set_location('Leaving:'||l_proc, 50);
876: End If;
877: --
878: Exception
879: When l_rows_exist Then

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

1715: l_periods_per_period per_time_period_rules.periods_per_period%type;
1716: l_arrears_flag_rule pay_legislation_rules.rule_mode%type;
1717: --
1718: Begin
1719: hr_utility.set_location('Entering:'||l_proc, 5);
1720: --
1721: -- Call all supporting business operations
1722: --
1723: -- Check the consolidation_set_id and get the respective business group.

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

1843: pay_pay_bus.chk_ddf(p_rec);
1844: --
1845: pay_pay_bus.chk_df(p_rec);
1846: --
1847: hr_utility.set_location(' Leaving:'||l_proc, 10);
1848: End insert_validate;
1849: --
1850: -- ----------------------------------------------------------------------------
1851: -- |---------------------------< update_validate >----------------------------|

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

1864: l_business_group_id pay_all_payrolls_f.business_group_id%type;
1865:
1866: --
1867: Begin
1868: hr_utility.set_location('Entering:'||l_proc, 5);
1869: --
1870: -- Call all supporting business operations
1871: --
1872: hr_api.validate_bus_grp_id

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

2000: pay_pay_bus.chk_ddf(p_rec);
2001: --
2002: pay_pay_bus.chk_df(p_rec);
2003: --
2004: hr_utility.set_location(' Leaving:'||l_proc, 10);
2005: End update_validate;
2006: --
2007: -- ----------------------------------------------------------------------------
2008: -- |---------------------------< delete_validate >----------------------------|

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

2017: --
2018: l_proc varchar2(72) := g_package||'delete_validate';
2019: --
2020: Begin
2021: hr_utility.set_location('Entering:'||l_proc, 5);
2022: --
2023: -- Call all supporting business operations
2024: --
2025: dt_delete_validate

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

2038: ,p_validation_start_date => p_validation_start_date
2039: ,p_validation_end_date => p_validation_end_date
2040: );
2041: --
2042: hr_utility.set_location(' Leaving:'||l_proc, 10);
2043: --
2044: End delete_validate;
2045: --
2046: