Control Budget LOV — Security-Filtered Report Parameter
Published August 22, 2026
By Sai Sree Ram Gundepudi
Lists the active Control Budgets the current user has data access to — used as the LOV source for a budgetary-control report's "Control Budget" parameter.
/* Control Budget list that a user has access to */
SELECT xcb.name,
xcb.control_budget_id
FROM fusion.xcc_control_budgets xcb
WHERE xcb.status_code = 'ACTIVE'
AND xcb.control_budget_id IN (
SELECT DISTINCT furda.control_budget_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 xcb.name;