I am new to BIRT. I created a report which has pie chart and a tabular report which has drill down. I run the report locally as "View report as HTML" option it works fine. When I save the report from browser as html format, and send the link to end user. He is not able to do a drill down on the report. How does end user see the report completely ? What are the steps to be taken ? Also how do I run the report from command line ?
Check the URLs that you are using for the drill down to see if they are available from the remote machine.
Related
The environment is SQL Server Reporting Services 2012. I have two reporting services reports: parent report lists some records and those records are presented and hyperlinks. These hyperlinks can be clicked and this will take you to a child report (for the clicked record). I also pass some parameters as part of the call to the child report and everything works fine.
On the child report I have a text box, which is a link back to parent report. I configured "Action" property for this text box to pass some parameters back (from the child report to the parent report). The problem is that after clicking "Back to Parent" link, the parent report doesn't automatically render. I have to select my parameters manually and click "View report" button in order to make it run.
How can I make parent report auto-render when I navigate back to it from the child report?
Thank you, bitnine, for your input! I do have somewhat complicated parameters in my report, some of which are cascaded. I had to ensure that all of them either had defaults specified or had values provided by the "Action" mapping (as specified on the sub-report's "Back to Parent" link. After that, things started working as expected.
I'm able to generate Dashboard with jmeter 3.0, however the report generated is in html document, is there any way i can get the report in pdf/word document?
You can easily save the HTML report to PDF in one click using File -> Print menu (Chrome Browser and derivatives)
Other browsers should have similar functionality either out of the box or via plugins.
As an alternative you can consider BM.Sense Uploader plugin which automatically uploads your results to BM.Sense analysis service. You can export analyzed results in PDF form from there.
I have automated a web application with UFT using BPT framework in ALM.After execution of END to END scenario, the run report is displaying results at component level. It is not showing different flows that are getting executed.The report is just showing all the components of E2E.So, how can I change the layout of the run result report of UFT so that it displays the flows as well.
UFT by default will group components with in the flow and once you expand your flow you should be able to view the components and steps executed inside components.
I have two reports in SSRS - the main one with the list of parameters, and the dependant one. You can navigate between them in both ways (there are appropriate actions assigned).
The problem is that when I display the dependant report and then I come back to the main one, the list of parameters is not visible (the issue appears in Visual Studio as well as on Report Server and Sharepoint - both IE and Chrome)
I have used the "Do not cache temporary copies of this report" in report processing options.
Please advise.
This is the default behavior, Since the purpose of a drill-down report is to pass the parameters from the master report to the details report, it's not allow to see or modify the parameters in the details report.
Therefore, the parameter pane is automatically hidden in the details report.
you can use jump to URL and set the parameters to be true, like this:
http:///reportserver?/ReportFolder/Reportname&rs:Command=Render&rs:Format=HTML4.0&rc:Parameters=true
You can refer to Using URL Access Parameters
my report is up and running in my local tomcat server with this url
http://localhost:8080/WebViewerExample/frameset?__report=course_report.rptdesign
so in my report there is one parameter called "course" so in the browser asking for the parameter and displaying the report as per my reports design it's working fine.
But my requirement is instead of view the report in the birt viewer it should be download.
so i am trying to change the url like this
http://localhost:8080/WebViewerExample/download?__report=course_report.rptdesign&course="MCA"
means in the place of "frameset" i am writting "download" and passing the parameter "&course="MCA".
it's giving an error
org.eclipse.birt.report.service.api.ReportServiceException: /home/arjunkumarm/tomcat7/webapps/WebViewerExample/documents/BIRTDOC1D8E2827AF9E44F93971829D80BB680C/20150702_181043_534/course_report.rptdocument doesn't exist or is not a folder.
any one can help me what is the error. and what is the solution for that.
Thanks in advance....
Try /executereport.do?__executableName=/MyReport.rptdesign&invokesubmit=true&__format=pdf. You could also do it with JavaScript on a web page or their REST API.
For additional discussion check out http://developer.actuate.com/community/forum/index.php?/topic/23052-using-actuateviewerdownloadreport/