Hi Team,
In Oracle apex in report section we have an option subscription, by which user can customize report grid and create schedule to receive that report through email as per schedule.
I have 2 question related to subscription
- Instead of .htm format can user get the report in .csv format using subscription.
- Now a days users are getting blank report in email, however same report I am able to get using download option. Please let me know if you require more details
Hi Ram,
You can download a CSV directly from the interactive report using the following syntax:
In the above example, it will call the report, which is on page number 10, by passing the CSV parameter after the session variable. Also, passing the report parameters employee id. You can omit this if not required. For the full tutorial, check this link Download CSV from Interactive Report using URL.
Another way is you can write a database procedure to extract the data into a CSV file.
Check this link Download CSV using PL/SQL procedure.