DBA Data[Home] [Help]

APPS.PAY_AU_TERMINATIONS dependencies on STANDARD

Line 29: ** 28-NOV-2001 nnaresh 115.12 Updated for GSCC Standards

25: ** 12-SEP-2001 shoskatt 115.11 Leave Initialise Values used for calculating the Accruals
26: ** Bug #1942971
27: ** Package containing addition processing required by
28: ** formula in AU localisatons.
29: ** 28-NOV-2001 nnaresh 115.12 Updated for GSCC Standards
30: ** 04-Dec-2002 Ragovind 115.13 Added NOCOPY to thr functions check_rollover, etp_prepost_ratios
31: ** ,get_long_service_leave, term_lsl_eligibility_years
32: ** 07-May-2003 Ragovind 115.15 Bug#2819479 - ETP Pre/Post Enhancement.
33: ** 18-May-2003 Ragovind 115.16 Added Reference Bug# for Bug#2819479

Line 1261: p_earnings_standard out NOCOPY number, /*Bug 4474896*/

1257: p_hire_date in date,
1258: p_period_start_date in date,
1259: p_period_end_date in date,
1260: p_case out NOCOPY varchar2,
1261: p_earnings_standard out NOCOPY number, /*Bug 4474896*/
1262: p_pre_tax_spread out NOCOPY number, /*Bug 4474896*/
1263: p_pre_tax_fixed out NOCOPY number, /*Bug 4474896*/
1264: p_pre_tax_prog out NOCOPY number, /*Bug 4474896*/
1265: p_paid_periods out NOCOPY number, /*Bug 4474896*/

Line 1443: p_earnings_standard := 0; /*Bug 4474896*/

1439: BEGIN
1440:
1441: l_procedure := 'calculate_term_asg_nge';
1442: g_ytd_def_bals_populated := FALSE;
1443: p_earnings_standard := 0; /*Bug 4474896*/
1444: p_pre_tax_spread := 0; /*Bug 4474896*/
1445: p_pre_tax_fixed := 0; /*Bug 4474896*/
1446: p_pre_tax_prog := 0; /*Bug 4474896*/
1447: i := 1;

Line 1646: /*Bug 4474896 - Modified the code to pick balances Earnings Standard, Pre Tax Spread, Pre Tax Progressive, Pre Tax Fixed*/

1642: P_DEFINED_BALANCE_LST => g_ytd_input_table,
1643: P_CONTEXT_LST => g_ytd_context_table,
1644: P_OUTPUT_TABLE => g_ytd_result_table);
1645:
1646: /*Bug 4474896 - Modified the code to pick balances Earnings Standard, Pre Tax Spread, Pre Tax Progressive, Pre Tax Fixed*/
1647: FOR i in g_ytd_result_table.first .. g_ytd_result_table.last
1648: LOOP
1649: IF g_ytd_result_table(i).defined_balance_id = g_ytd_bals(i).defined_balance_id
1650: and g_ytd_bals(i).balance_name = 'Earnings_Standard'

Line 1650: and g_ytd_bals(i).balance_name = 'Earnings_Standard'

1646: /*Bug 4474896 - Modified the code to pick balances Earnings Standard, Pre Tax Spread, Pre Tax Progressive, Pre Tax Fixed*/
1647: FOR i in g_ytd_result_table.first .. g_ytd_result_table.last
1648: LOOP
1649: IF g_ytd_result_table(i).defined_balance_id = g_ytd_bals(i).defined_balance_id
1650: and g_ytd_bals(i).balance_name = 'Earnings_Standard'
1651: THEN
1652: p_earnings_standard := nvl(g_ytd_result_table(i).balance_value,0);
1653: IF g_debug THEN
1654: hr_utility.set_location('p_earnings_standard: '||p_earnings_standard, 60);

Line 1652: p_earnings_standard := nvl(g_ytd_result_table(i).balance_value,0);

1648: LOOP
1649: IF g_ytd_result_table(i).defined_balance_id = g_ytd_bals(i).defined_balance_id
1650: and g_ytd_bals(i).balance_name = 'Earnings_Standard'
1651: THEN
1652: p_earnings_standard := nvl(g_ytd_result_table(i).balance_value,0);
1653: IF g_debug THEN
1654: hr_utility.set_location('p_earnings_standard: '||p_earnings_standard, 60);
1655: END IF;
1656: ELSIF g_ytd_result_table(i).defined_balance_id = g_ytd_bals(i).defined_balance_id

Line 1654: hr_utility.set_location('p_earnings_standard: '||p_earnings_standard, 60);

1650: and g_ytd_bals(i).balance_name = 'Earnings_Standard'
1651: THEN
1652: p_earnings_standard := nvl(g_ytd_result_table(i).balance_value,0);
1653: IF g_debug THEN
1654: hr_utility.set_location('p_earnings_standard: '||p_earnings_standard, 60);
1655: END IF;
1656: ELSIF g_ytd_result_table(i).defined_balance_id = g_ytd_bals(i).defined_balance_id
1657: and g_ytd_bals(i).balance_name = 'Pre Tax Spread Deductions'
1658: THEN