Project Organization LOV — Security-Filtered Report Parameter

Published August 18, 2026 By Sai Sree Ram Gundepudi

Lists the Project Organizations the current user has data access to — used as the LOV source for a Projects report's "Project Organization" parameter.

/* Project Organization list that a user has access to */
SELECT haou.name AS organization_name,
       haou.organization_id
FROM   fusion.hr_all_organization_units_f haou
WHERE  sysdate BETWEEN haou.effective_start_date AND haou.effective_end_date
AND    haou.organization_id IN (
           SELECT DISTINCT furda.prj_organization_id
           FROM   fusion.per_users                   pu,
                  fusion.fun_user_role_data_asgnmnts furda
           WHERE  pu.user_guid = furda.user_guid
           AND    nvl(furda.active_flag, 'N') = 'Y'
           AND    sysdate BETWEEN furda.start_date_active AND nvl(furda.end_date_active, sysdate)
           AND    upper(pu.username) = upper(:xdo_user_name)
       )
ORDER BY haou.name;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article