DBA Data[Home] [Help]

APPS.PAY_NO_PAYSLIP_ARCHIVE dependencies on PER_PERIODS_OF_SERVICE

Line 1281: per_periods_of_service pps

1277: paf.business_group_id bus_grp_id,
1278: paf.assignment_number asg_num
1279: FROM per_assignments_f paf,
1280: per_all_people_f ppf,
1281: per_periods_of_service pps
1282: WHERE paf.person_id = ppf.person_id
1283: AND paf.assignment_id = p_assignment_id
1284: AND pps.person_id = ppf.person_id
1285: AND p_date_earned BETWEEN paf.effective_start_date AND paf.effective_end_date

Line 1407: FROM per_periods_of_service pps,

1403: -------------
1404: /* Cursor to pick Hire Date*/
1405: CURSOR csr_hire_date (p_assignment_id NUMBER) IS
1406: SELECT date_start
1407: FROM per_periods_of_service pps,
1408: per_all_assignments_f paa
1409: WHERE pps.period_of_service_id = paa.period_of_service_id
1410: AND p_date_earned between paa.effective_start_date and paa.effective_end_date
1411: AND paa.assignment_id = p_assignment_id;

Line 1459: l_hire_date per_periods_of_service.date_start%TYPE;

1455: rec_employer_address csr_employer_address%ROWTYPE;
1456: rec_org_address csr_organization_address%ROWTYPE;
1457: l_nationality per_all_people_f.nationality%TYPE;
1458: l_position per_all_positions.name%TYPE;
1459: l_hire_date per_periods_of_service.date_start%TYPE;
1460: l_grade per_grades.name%TYPE;
1461: l_currency hr_organization_information.org_information10%TYPE;
1462: l_organization hr_organization_units.name%TYPE;
1463: l_pay_location hr_locations_all.address_line_1%TYPE;

Line 3841: FROM per_periods_of_service pps,

3837: IS
3838: -------------
3839: CURSOR CSR_ACTUAL_TERM_DATE (p_assignment_id NUMBER) IS
3840: SELECT actual_termination_date
3841: FROM per_periods_of_service pps,
3842: per_all_assignments_f paa
3843: WHERE pps.period_of_service_id = paa.period_of_service_id
3844: AND p_date_earned between paa.effective_start_date and paa.effective_end_date
3845: AND paa.assignment_id = p_assignment_id;

Line 3956: l_actual_termination_date PER_PERIODS_OF_SERVICE.ACTUAL_TERMINATION_DATE%TYPE;

3952: AND l_eff_date BETWEEN r.effective_start_date AND r.effective_end_date;
3953:
3954: ------------------------------------------------
3955:
3956: l_actual_termination_date PER_PERIODS_OF_SERVICE.ACTUAL_TERMINATION_DATE%TYPE;
3957: l_tax_card_effective_date DATE;
3958: l_tax_card_type VARCHAR2(50);
3959: l_base_rate NUMBER(5,2);
3960: l_additional_rate NUMBER(5,2);