SELECT
papf.employee_number,
acc.segment1,
acc.segment2,
acc.segment3,
acc.segment4,
acc.segment5,
pppmf.last_update_date
FROM
pay_personal_payment_methods_f pppmf,
per_all_assignments_f paaf,
per_all_people_f papf,
pay_external_accounts acc
WHERE
1 = 1
AND pppmf.assignment_id = paaf.assignment_id
AND paaf.person_id = papf.person_id
AND acc.external_account_id = pppmf.external_account_id
AND paaf.assignment_type = 'E'
AND paaf.primary_flag = 'Y'
AND paaf.business_group_id = 3444
AND trunc(sysdate) BETWEEN paaf.effective_start_date AND paaf.effective_end_date
AND trunc(sysdate) BETWEEN pppmf.effective_start_date AND pppmf.effective_end_date
AND trunc(sysdate) BETWEEN papf.effective_start_date AND papf.effective_end_date
AND papf.employee_number IN ( '')
papf.employee_number,
acc.segment1,
acc.segment2,
acc.segment3,
acc.segment4,
acc.segment5,
pppmf.last_update_date
FROM
pay_personal_payment_methods_f pppmf,
per_all_assignments_f paaf,
per_all_people_f papf,
pay_external_accounts acc
WHERE
1 = 1
AND pppmf.assignment_id = paaf.assignment_id
AND paaf.person_id = papf.person_id
AND acc.external_account_id = pppmf.external_account_id
AND paaf.assignment_type = 'E'
AND paaf.primary_flag = 'Y'
AND paaf.business_group_id = 3444
AND trunc(sysdate) BETWEEN paaf.effective_start_date AND paaf.effective_end_date
AND trunc(sysdate) BETWEEN pppmf.effective_start_date AND pppmf.effective_end_date
AND trunc(sysdate) BETWEEN papf.effective_start_date AND papf.effective_end_date
AND papf.employee_number IN ( '')
No comments:
Post a Comment