DBA Data[Home] [Help]

APPS.HR_AU_TAX_API dependencies on HR_AU_TAX_API

Line 1: PACKAGE BODY hr_au_tax_api AS

1: PACKAGE BODY hr_au_tax_api AS
2: /* $Header: hrauwrtx.pkb 120.5.12010000.2 2008/08/06 08:33:40 ubhat ship $ */
3: /*
4: +===========================================================================
5: | Copyright (c) 1999 Oracle Corporation Ltd

Line 58: g_package constant varchar2(33) := 'hr_au_tax_api.';

54: |NOTES
55: +==========================================================================================
56: */
57: type paye_number_table is table of number not null index by binary_integer;
58: g_package constant varchar2(33) := 'hr_au_tax_api.';
59: g_paye_element constant varchar2(60) := 'Tax Information'; -- Bug: 3648796
60: g_paye_input1 constant varchar2(60) := 'AUSTRALIAN RESIDENT';
61: g_paye_input2 constant varchar2(60) := 'TAX FREE THRESHOLD';
62: g_paye_input3 constant varchar2(60) := 'REBATE AMOUNT';

Line 428: L_tax_Scale := hr_au_tax_api.tax_scale

424: end If;
425:
426:
427: -- Derive the tax scale
428: L_tax_Scale := hr_au_tax_api.tax_scale
429: (
430: p_tax_file_number => p_tax_file_number
431: ,p_australian_resident_flag => p_australian_resident_flag
432: ,p_tax_free_threshold_flag => p_tax_free_threshold_flag

Line 524: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);

520: IF (l_mode IN ('CORRECTION','UPDATE','UPDATE_CHANGE_INSERT','UPDATE_OVERRIDE')) THEN
521: -----------------------------------------------------------------------------
522: -- Get the element entry of the tax element entry that is to be updated
523: ------------------------------------------------------------------------------
524: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);
525:
526: OPEN csr_ele_entry(l_element_link_id, l_inp_value_id_table(1));
527: FETCH csr_ele_entry INTO l_element_entry_id,l_object_version_number;
528: IF (csr_ele_entry%NOTFOUND) THEN

Line 890: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);

886: -----------------------------------------------------------------------------
887: -- Get the element entry of the tax element entry that is to be updated
888: ------------------------------------------------------------------------------
889:
890: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);
891:
892: OPEN csr_ele_entry(l_element_link_id, l_inp_value_id_table(1));
893: FETCH csr_ele_entry INTO l_element_entry_id,l_object_version_number;
894: IF (csr_ele_entry%NOTFOUND) THEN

Line 1946: hr_au_tax_api.create_paye_tax_info

1942: --
1943: -- The element entry does not exist so call the CREATE API
1944: --
1945: close csr_element_entry;
1946: hr_au_tax_api.create_paye_tax_info
1947: (p_validate => false
1948: ,p_effective_date => p_hire_date
1949: ,p_business_group_id => p_business_group_id
1950: ,p_assignment_id => p_assignment_id

Line 2013: END hr_au_tax_api ;

2009: hr_utility.set_location(l_procedure,90);
2010: end if;
2011: end update_adi_tax_crp;
2012:
2013: END hr_au_tax_api ;