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.10.12020000.3 2012/12/06 12:17:17 dduvvuri ship $ */
3: /*
4: +===========================================================================
5: | Copyright (c) 1999 Oracle Corporation Ltd

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

64: |NOTES
65: +==========================================================================================
66: */
67: type paye_number_table is table of number not null index by binary_integer;
68: g_package constant varchar2(33) := 'hr_au_tax_api.';
69: g_paye_element constant varchar2(60) := 'Tax Information'; -- Bug: 3648796
70: g_paye_input1 constant varchar2(60) := 'AUSTRALIAN RESIDENT';
71: g_paye_input2 constant varchar2(60) := 'TAX FREE THRESHOLD';
72: g_paye_input3 constant varchar2(60) := 'REBATE AMOUNT';

Line 456: L_tax_Scale := hr_au_tax_api.tax_scale

452: end If;
453:
454:
455: -- Derive the tax scale
456: L_tax_Scale := hr_au_tax_api.tax_scale
457: (
458: p_tax_file_number => p_tax_file_number
459: ,p_australian_resident_flag => p_australian_resident_flag
460: ,p_tax_free_threshold_flag => nvl(p_tax_free_threshold_flag,'N') /* Bug 7664100 */

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

551: IF (l_mode IN ('CORRECTION','UPDATE','UPDATE_CHANGE_INSERT','UPDATE_OVERRIDE')) THEN
552: -----------------------------------------------------------------------------
553: -- Get the element entry of the tax element entry that is to be updated
554: ------------------------------------------------------------------------------
555: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);
556:
557: OPEN csr_ele_entry(l_element_link_id, l_inp_value_id_table(1));
558: FETCH csr_ele_entry INTO l_element_entry_id,l_object_version_number;
559: IF (csr_ele_entry%NOTFOUND) THEN

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

925: -----------------------------------------------------------------------------
926: -- Get the element entry of the tax element entry that is to be updated
927: ------------------------------------------------------------------------------
928:
929: hr_utility.set_location('hr_au_tax_api.maintain_tax_info' ,7);
930:
931: OPEN csr_ele_entry(l_element_link_id, l_inp_value_id_table(1));
932: FETCH csr_ele_entry INTO l_element_entry_id,l_object_version_number;
933: IF (csr_ele_entry%NOTFOUND) THEN

Line 2013: hr_au_tax_api.create_paye_tax_info

2009: else
2010: l_date := to_date('01-07-1997','dd-mm-yyyy');
2011: end if;
2012:
2013: hr_au_tax_api.create_paye_tax_info
2014: (p_validate => false
2015: ,p_effective_date => l_date
2016: ,p_business_group_id => p_business_group_id
2017: ,p_assignment_id => p_assignment_id

Line 2089: END hr_au_tax_api ;

2085: hr_utility.set_location(l_procedure,90);
2086: end if;
2087: end update_adi_tax_crp;
2088:
2089: END hr_au_tax_api ;