Fixed Asset Book LOV — Security-Filtered Report Parameter

Published August 22, 2026 By Sai Sree Ram Gundepudi

Lists the Fixed Asset Books the current user has data access to — used as the LOV source for a Fixed Assets report's "Asset Book" parameter.

/* Fixed Asset Books list that a user has access to */
SELECT fbc.book_type_name,
       fbc.book_control_id
FROM   fusion.fa_book_controls fbc
WHERE  fbc.book_control_id IN (
           SELECT DISTINCT furda.book_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 fbc.book_type_name;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article