DBA Data[Home] [Help]

APPS.PAY_NL_EOY_PKG dependencies on PAY_NL_SI_PKG

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

523:
524: /* Determine the number of week days (Monday to Friday) that the employee
525: worked in the period i.e. between the assignment start date and the end of the period.*/
526:
527: l_week_days:= pay_nl_si_pkg.get_week_days(l_asg_start_date,l_period_end_date);
528:
529: --if g_debug then
530: hr_utility.set_location('Inside GET_PREV_YEAR_TAX_INCOME: l_week_days'||l_week_days,3800);
531: --end if;

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

534: END IF;
535: /*Determine the total number of week days in the period i.e. between the period
536: start date and the end of the period.*/
537:
538: l_total_week_days := pay_nl_si_pkg.get_week_days(l_period_start_date,l_period_end_date);
539:
540: IF l_total_week_days IS NULL THEN
541: l_total_week_days:=0;
542: END IF;

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

759: l_special_rate_income:=l_special_rate_income_ptd;
760: l_special_rate_income_add:=l_special_rate_annual_income;
761:
762: IF l_asg_start_date > l_current_period_start_date THEN
763: l_week_days :=pay_nl_si_pkg.get_week_days(l_asg_start_date,l_current_period_end_date);
764: l_total_week_days:=pay_nl_si_pkg.get_week_days(l_current_period_start_date,l_current_period_end_date);
765:
766: IF l_week_days IS NULL OR l_week_days=0 THEN
767: l_week_days:=1;

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

760: l_special_rate_income_add:=l_special_rate_annual_income;
761:
762: IF l_asg_start_date > l_current_period_start_date THEN
763: l_week_days :=pay_nl_si_pkg.get_week_days(l_asg_start_date,l_current_period_end_date);
764: l_total_week_days:=pay_nl_si_pkg.get_week_days(l_current_period_start_date,l_current_period_end_date);
765:
766: IF l_week_days IS NULL OR l_week_days=0 THEN
767: l_week_days:=1;
768: END IF;