DBA Data[Home] [Help]

APPS.PAY_DK_ARCHIVE dependencies on PER_PERIODS_OF_SERVICE

Line 857: per_periods_of_service pps

853: paf.grade_id grade_id,
854: paf.business_group_id bus_grp_id
855: FROM per_assignments_f paf,
856: per_all_people_f ppf,
857: per_periods_of_service pps
858: WHERE paf.person_id = ppf.person_id
859: AND paf.assignment_id = p_assignment_id
860: AND pps.person_id = ppf.person_id
861: AND p_date_earned BETWEEN paf.effective_start_date AND paf.effective_end_date

Line 982: FROM per_periods_of_service pps,

978: -------------
979: /* Cursor to pick Hire Date*/
980: CURSOR csr_hire_date (p_assignment_id NUMBER) IS
981: SELECT date_start
982: FROM per_periods_of_service pps,
983: per_all_assignments_f paa
984: WHERE pps.period_of_service_id = paa.period_of_service_id
985: AND p_date_earned between paa.effective_start_date and paa.effective_end_date
986: AND paa.assignment_id = p_assignment_id;

Line 1046: l_hire_date per_periods_of_service.date_start%TYPE;

1042: rec_employer_address csr_employer_address%ROWTYPE;
1043: rec_org_address csr_organization_address%ROWTYPE;
1044: l_nationality per_all_people_f.nationality%TYPE;
1045: l_position per_all_positions.name%TYPE;
1046: l_hire_date per_periods_of_service.date_start%TYPE;
1047: l_grade per_grades.name%TYPE;
1048: l_currency hr_organization_information.org_information10%TYPE;
1049: l_organization hr_organization_units.name%TYPE;
1050: l_pay_location hr_locations_all.address_line_1%TYPE;

Line 2646: FROM per_periods_of_service pps,

2642: IS
2643: -------------
2644: CURSOR CSR_ACTUAL_TERM_DATE (p_assignment_id NUMBER) IS
2645: SELECT actual_termination_date
2646: FROM per_periods_of_service pps,
2647: per_all_assignments_f paa
2648: WHERE pps.period_of_service_id = paa.period_of_service_id
2649: AND p_date_earned between paa.effective_start_date and paa.effective_end_date
2650: AND paa.assignment_id = p_assignment_id;

Line 2734: l_actual_termination_date PER_PERIODS_OF_SERVICE.ACTUAL_TERMINATION_DATE%TYPE;

2730: FROM pay_all_payrolls_f
2731: WHERE payroll_id = l_payroll_id ;
2732: --------------
2733:
2734: l_actual_termination_date PER_PERIODS_OF_SERVICE.ACTUAL_TERMINATION_DATE%TYPE;
2735: l_tax_card_effective_date DATE;
2736: l_tax_card_type VARCHAR2(50);
2737: l_base_rate NUMBER(5,2);
2738: l_additional_rate NUMBER(5,2);