DBA Data[Home] [Help]

APPS.PER_QH_TAX_QUERY dependencies on HR_UTILITY

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

15: l_proc varchar2(72) := g_package||'tax_query';
16: --
17: begin
18: --
19: hr_utility.set_location('Entering:'|| l_proc, 10);
20: --
21: if p_legislation_code='UK' then
22: hr_utility.set_location('Entering:'|| l_proc, 20);
23: --

Line 22: hr_utility.set_location('Entering:'|| l_proc, 20);

18: --
19: hr_utility.set_location('Entering:'|| l_proc, 10);
20: --
21: if p_legislation_code='UK' then
22: hr_utility.set_location('Entering:'|| l_proc, 20);
23: --
24: -- localizations should make a call to their OWN packages in here, using
25: -- the record structure to pass the data. You must not place your own
26: -- code in here, to keep the size of the package maneagable.

Line 29: hr_utility.set_location('Entering:'|| l_proc, 30);

25: -- the record structure to pass the data. You must not place your own
26: -- code in here, to keep the size of the package maneagable.
27: --
28: elsif p_legislation_code='US' then
29: hr_utility.set_location('Entering:'|| l_proc, 30);
30: elsif p_legislation_code='IT' then
31: hr_utility.set_location('Entering:'|| l_proc, 40);
32: per_it_qh_tax.it_tax_query
33: (p_rec => p_rec

Line 31: hr_utility.set_location('Entering:'|| l_proc, 40);

27: --
28: elsif p_legislation_code='US' then
29: hr_utility.set_location('Entering:'|| l_proc, 30);
30: elsif p_legislation_code='IT' then
31: hr_utility.set_location('Entering:'|| l_proc, 40);
32: per_it_qh_tax.it_tax_query
33: (p_rec => p_rec
34: ,p_person_id => p_person_id
35: ,p_assignment_id => p_assignment_id

Line 40: hr_utility.set_location('Entering:'|| l_proc, 50);

36: ,p_legislation_code => p_legislation_code
37: ,p_effective_date => p_effective_date
38: );
39: elsif p_legislation_code='NL' then
40: hr_utility.set_location('Entering:'|| l_proc, 50);
41: per_nl_qh_tax.nl_tax_query
42: (p_rec => p_rec
43: ,p_person_id => p_person_id
44: ,p_assignment_id => p_assignment_id

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

46: ,p_effective_date => p_effective_date
47: );
48: end if;
49: --
50: hr_utility.set_location('Leaving:'|| l_proc, 1000);
51: --
52: end tax_query;
53: --
54: procedure tax_query

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

218: begin
219: --
220: -- this procedure must not be modified by localization teams
221: --
222: hr_utility.set_location('Entering:'|| l_proc, 10);
223: --
224: tax_query
225: (p_rec => l_rec
226: ,p_person_id => p_person_id

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

381: tax_field149 := l_rec.tax_field149;
382: tax_field150 := l_rec.tax_field150;
383: tax_update_allowed := l_rec.tax_update_allowed;
384: --
385: hr_utility.set_location('Leaving:'|| l_proc, 20);
386: --
387: end tax_query;
388: --
389: