I have created a secondment report, and the business want a parameter in Oracle BIP with Locations. However we have over 1000 active locations.
SELECT location_name
FROM hr_locations_all_x
WHERE ACTIVE_STATUS = 'A'
Is the LOV used, but this causes the error message. If I use FETCH FIRST 999 ROWS ONLY, this excludes data from the report.
Is there a way for me to get all active locations in the parameter?
Thank you for your help.