DBA Data[Home] [Help]

APPS.PAY_NL_EOY_PKG dependencies on PAY_NL_SI_PKG

Line 481: l_week_days:= pay_nl_si_pkg.get_week_days(l_asg_start_date,l_period_end_date);

477:
478: /* Determine the number of week days (Monday to Friday) that the employee
479: worked in the period i.e. between the assignment start date and the end of the period.*/
480:
481: l_week_days:= pay_nl_si_pkg.get_week_days(l_asg_start_date,l_period_end_date);
482:
483: --if g_debug then
484: hr_utility.set_location('Inside GET_PREV_YEAR_TAX_INCOME: l_week_days'||l_week_days,3800);
485: --end if;

Line 492: l_total_week_days := pay_nl_si_pkg.get_week_days(l_period_start_date,l_period_end_date);

488: END IF;
489: /*Determine the total number of week days in the period i.e. between the period
490: start date and the end of the period.*/
491:
492: l_total_week_days := pay_nl_si_pkg.get_week_days(l_period_start_date,l_period_end_date);
493:
494: IF l_total_week_days IS NULL THEN
495: l_total_week_days:=0;
496: END IF;

Line 711: l_week_days :=pay_nl_si_pkg.get_week_days(l_asg_start_date,l_current_period_end_date);

707: l_special_rate_income:=l_special_rate_income_ptd;
708: l_special_rate_income_add:=l_special_rate_annual_income;
709:
710: IF l_asg_start_date > l_current_period_start_date THEN
711: l_week_days :=pay_nl_si_pkg.get_week_days(l_asg_start_date,l_current_period_end_date);
712: l_total_week_days:=pay_nl_si_pkg.get_week_days(l_current_period_start_date,l_current_period_end_date);
713:
714: IF l_week_days IS NULL OR l_week_days=0 THEN
715: l_week_days:=1;

Line 712: l_total_week_days:=pay_nl_si_pkg.get_week_days(l_current_period_start_date,l_current_period_end_date);

708: l_special_rate_income_add:=l_special_rate_annual_income;
709:
710: IF l_asg_start_date > l_current_period_start_date THEN
711: l_week_days :=pay_nl_si_pkg.get_week_days(l_asg_start_date,l_current_period_end_date);
712: l_total_week_days:=pay_nl_si_pkg.get_week_days(l_current_period_start_date,l_current_period_end_date);
713:
714: IF l_week_days IS NULL OR l_week_days=0 THEN
715: l_week_days:=1;
716: END IF;