DBA Data[Home] [Help]

APPS.PER_QH_TAX_UPDATE dependencies on HR_UTILITY

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

15: l_proc varchar2(72) := g_package||'insert_tax_data';
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:
31: elsif p_legislation_code='IT' then
32: hr_utility.set_location('Entering:'|| l_proc, 40);
33: per_it_qh_tax.update_it_tax_data

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

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

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

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

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

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

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: l_rec.tax_effective_start_date := tax_effective_start_date;
225: l_rec.tax_effective_end_date := tax_effective_end_date;
226: l_rec.tax_field1 := tax_field1;

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

534: tax_field148 := l_rec.tax_field148;
535: tax_field149 := l_rec.tax_field149;
536: tax_field150 := l_rec.tax_field150;
537: --
538: hr_utility.set_location('Leaving:'|| l_proc, 20);
539: --
540: end insert_tax_data;
541: --
542: procedure update_tax_data

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

549: l_proc varchar2(72) := g_package||'update_tax_data';
550: --
551: begin
552: --
553: hr_utility.set_location('Entering:'|| l_proc, 10);
554: --
555: if p_legislation_code='UK' then
556: hr_utility.set_location('Entering:'|| l_proc, 20);
557: --

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

552: --
553: hr_utility.set_location('Entering:'|| l_proc, 10);
554: --
555: if p_legislation_code='UK' then
556: hr_utility.set_location('Entering:'|| l_proc, 20);
557: --
558: -- localizations should make a call to their OWN packages in here, using
559: -- the record structure to pass the data. You must not place your own
560: -- code in here, to keep the size of the package maneagable.

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

559: -- the record structure to pass the data. You must not place your own
560: -- code in here, to keep the size of the package maneagable.
561: --
562: elsif p_legislation_code='US' then
563: hr_utility.set_location('Entering:'|| l_proc, 30);
564: elsif p_legislation_code='IT' then
565: hr_utility.set_location('Entering:'|| l_proc, 40);
566: per_it_qh_tax.update_it_tax_data
567: (p_rec => p_rec

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

561: --
562: elsif p_legislation_code='US' then
563: hr_utility.set_location('Entering:'|| l_proc, 30);
564: elsif p_legislation_code='IT' then
565: hr_utility.set_location('Entering:'|| l_proc, 40);
566: per_it_qh_tax.update_it_tax_data
567: (p_rec => p_rec
568: ,p_person_id => p_person_id
569: ,p_assignment_id => p_assignment_id

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

570: ,p_legislation_code => p_legislation_code
571: ,p_effective_date => p_effective_date
572: );
573: elsif p_legislation_code='NL' then
574: hr_utility.set_location('Entering:'|| l_proc, 50);
575: per_nl_qh_tax.update_nl_tax_data
576: (p_rec => p_rec
577: ,p_person_id => p_person_id
578: ,p_assignment_id => p_assignment_id

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

580: ,p_effective_date => p_effective_date
581: );
582: end if;
583: --
584: hr_utility.set_location('Leaving:'|| l_proc, 1000);
585: --
586: end update_tax_data;
587: --
588: procedure update_tax_data

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

752: begin
753: --
754: -- this procedure must not be modified by localization teams
755: --
756: hr_utility.set_location('Entering:'|| l_proc, 10);
757: --
758: l_rec.tax_effective_start_date := tax_effective_start_date;
759: l_rec.tax_effective_end_date := tax_effective_end_date;
760: l_rec.tax_field1 := tax_field1;

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

1070: tax_field149 := l_rec.tax_field149;
1071: tax_field150 := l_rec.tax_field150;
1072: tax_update_allowed := l_rec.tax_update_allowed;
1073: --
1074: hr_utility.set_location('Leaving:'|| l_proc, 20);
1075: --
1076: end update_tax_data;
1077: --
1078: