You are not logged in.
Pages: 1
Hi,
We have a requirement where reports are getting called from Web application (PowerApps) and all works well with BIRT Reports. But we have an requirement where we need fixed width txt file and for this I am using Dynamic list. The requirement is getting fullfilled and dynamc list is getting called through URL and generating csv file. But it has first row as column header. We get option to Ignore exporting headers when we generate manually, is there any way I can provide this parameter in URL.
I have also tried to remove default value in csvexport script like below. But still getting headers when report is exported through URL.
csvexport.cf
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<csv>
<printHeader>false</printHeader>
<separator>;</separator>
<quote>"</quote>
<lineSeparator>\r\n</lineSeparator>
</csv>
</configuration>
Report URL - https://<ServerName>/reportserver/reportserver/reportexport?key=<reportkey>&format=CSV&exportheaders=false
Offline
Hi michigunesh,
this is currently not possible, but we raised ticket RS-6315 for this purpose.
You can try to use script reports https://reportserver.net/en/guides/scri … Reporting/ for your specific requirements.
Regards,
Eduardo
Offline
Pages: 1