Query to find the List of Project Expenditure Organizations Information -
SELECT hrorg.organization_id,hrorg.business_group_id,
hrorg.NAME,
hrorg.date_from,
hrorg.date_to,
'Y',
org_id
FROM hr_organization_units hrorg,
pa_all_organizations paorg
WHERE paorg.organization_id = hrorg.organization_id
AND paorg.pa_org_use_type = 'EXPENDITURES'
AND paorg.inactive_date IS NULL
Comments
Post a Comment