You are not logged in.
Pages: 1
Topic closed
Hi:
One last item and I'll have everything I need. Is it possible to drill down on a report using a URL field? (or how is drill-down accomplished?)
Cheers,
Dave
Offline
Offline
Hi Arno:
Perfect, thanks.
Dave
Offline
Hi,
I am a bit confused setting up drill-down in BIRT Reports.
In order to implement drill do I have to go through the export-servlet?
So far in eclipse I could choose hyperlink type "drill-through" point to another rptdesign
pass the parameters and save them under the same folder in tomcat. Generated links were
working correctly. Using this approach in reportserver the links are not working.
Is it a matter of configuration or I must select a URI hyperlink type when designing?
If it is mandatory to use URI how can i maintain the viewer (with paging, zoom,etc)
on the next popup? My attempts led to error:
.....<div class="errorpage-stacktrace">javax.persistence.NoResultException: No entity found for query)......
Thanks in advance,
Spiros Sotiropoulos
Offline
Hi,
you are right, currently the drill through url type is not supported, but at a first glance it seems rather easy to implement, so we will probably offer this in a future release.
In the meantime you have to manually create hyperlinks to the reportexport servlet.
The base of the url is
http://SERVER:PORT/reportserverbasedir/reportserver/reportexport
with these additional parameters
id Specifies the report
key As an alternative to id, key can be used to select reports.
p_ Can be used to specify parameters. After the underscore character, the parameter will be
prompted by its key. p_myparameter=abc|def, for instance, can be used to set a list
parameter to abc and def.
format Defines the output format. Possible values are: html,pdf,csv,excel,png as well
as TABLE_TEMPLATE. With tabletemplate_id= the id of the template to be used will be given.
To open the report in the internal viewer use the url
http://SERVER:PORT/reportserverbasedir/resources/pdf.js/viewer.html?file=
and as the file-parameter pass the url as described above. Don't forget to properly urlencode all specials characters.
Cheers,
Thorsten
Thanks Thorsten for the fast reply,
Yes it is working that way. Quick question though, at the new window of the detailed report the export functionality (I mean the toolbar) is not there. Is there a way to include it at the top of the viewer as well?
Offline
Hi,
you can use urls like
"http://server/rsbasedir/ReportServer.html#reportexec/key:asd&p_pCity:thecity&v:preview"
with the same parameters as above, but using a colon (:) instead of the equal sign (=) to separate keys and values.
Unfortunately I wasn't able to persuade Birt not to open links in the iframe, but perhaps there is another way.
Cheers,
Thorsten
That's it! Thanks
Offline
Pages: 1
Topic closed