DBA Data[Home] [Help]

APPS.PER_VIEWS_PKG dependencies on PER_VIEWS_PKG

Line 1: package body PER_VIEWS_PKG as

1: package body PER_VIEWS_PKG as
2: /* $Header: peronvew.pkb 120.0.12010000.3 2008/09/25 05:02:24 nshrikha ship $ */
3: --
4: CURSOR csr_get_payroll (P_assignment_id number,
5: P_calculation_date date ) IS

Line 576: per_views_pkg.per_accrual_calc_detail(

572: p_mod varchar2(1) := 'N';
573: --
574: BEGIN
575: --
576: per_views_pkg.per_accrual_calc_detail(
577: P_assignment_id => P_assignment_id,
578: P_calculation_date => c_date,
579: P_plan_id => P_plan_id,
580: P_plan_category => P_plan_category,

Line 638: per_views_pkg.per_accrual_calc_detail(

634: p_mod varchar2(1) := 'N';
635: --
636: BEGIN
637: --
638: per_views_pkg.per_accrual_calc_detail(
639: P_assignment_id => P_assignment_id,
640: P_calculation_date => c_date,
641: P_plan_id => P_plan_id,
642: P_plan_category => P_plan_category,

Line 1111: per_views_pkg.per_get_accrual_for_plan

1107: THEN
1108: l_plan_accrual := 0;
1109: ELSE
1110: --
1111: per_views_pkg.per_get_accrual_for_plan
1112: ( p_plan_id => l_acc_plan_type_id,
1113: p_first_p_start_date => p_param_first_pstdt,
1114: p_first_p_end_date => p_param_first_pendt,
1115: p_first_calc_P_number => p_param_first_pnum,

Line 1427: l_unpaid_day := per_views_pkg.per_get_working_days(l_start_Date,

1423: --
1424: IF l_asg_eff_end_date between l_start_Date and l_end_date
1425: THEN
1426: IF l_asg_status <> 'ACTIVE_ASSIGN' THEN
1427: l_unpaid_day := per_views_pkg.per_get_working_days(l_start_Date,
1428: l_asg_eff_end_date);
1429: END IF;
1430: --
1431: --

Line 1444: per_views_pkg.per_get_working_days(l_asg_eff_start_date,

1440: ELSIF l_asg_status <> 'ACTIVE_ASSIGN' and
1441: l_asg_eff_start_date <= l_end_date
1442: THEN
1443: l_unpaid_day := l_unpaid_day +
1444: per_views_pkg.per_get_working_days(l_asg_eff_start_date,
1445: least(l_end_date,l_asg_eff_end_date));
1446: END IF;
1447: EXIT WHEN l_asg_eff_end_date > l_end_date;
1448: END LOOP;

Line 1461: l_working_day := per_views_pkg.per_get_working_days(l_start_Date,l_end_date);

1457: END IF;
1458: --
1459: --
1460: IF l_unpaid_day <> 0 THEN
1461: l_working_day := per_views_pkg.per_get_working_days(l_start_Date,l_end_date);
1462: IF l_working_day = l_unpaid_day THEN
1463: l_mult_factor := 0;
1464: ELSE
1465: l_mult_factor := (1 - (l_unpaid_day/l_working_day));

Line 1600: per_views_pkg.per_net_accruals(

1596: d7 date;
1597: --
1598: BEGIN
1599: --
1600: per_views_pkg.per_net_accruals(
1601: P_assignment_id => P_assignment_id,
1602: P_calculation_date => c_date,
1603: P_plan_id => P_plan_id,
1604: P_plan_category => P_plan_category,

Line 1658: per_views_pkg.per_accrual_calc_detail(

1654: BEGIN
1655: --
1656: -- Get vaction accrued
1657: --
1658: per_views_pkg.per_accrual_calc_detail(
1659: P_assignment_id => P_assignment_id,
1660: P_calculation_date => P_calculation_date,
1661: P_plan_id => P_plan_id,
1662: P_plan_category => P_plan_category,

Line 1708: END PER_VIEWS_PKG ;

1704: --
1705: --
1706: END PER_NET_ACCRUALS;
1707:
1708: END PER_VIEWS_PKG ;