Can I create a custom parameter page for BIRT Report? My users in ihub portal want to see the custom parameter page when they run the report instead of the default parameter page.
Related
how to generate request pages for multiple pages as I am going to migrating multiple reports from test to prod in Maximo.
is it possible to add generate request page button in the list view of report administration application
You already can generate request page from the Report Administration screen.
Whatever is on your list view is what gets generated when you click on the Generate Request Pages button.
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/
I have one master page and inheriting the master page in my detail page. For report we are using Telerik Reporting Controls. After bind the report we are getting extra blank pages.
Can you guide me fow the reason for this
Use a iframe and set the source of u r iframe to the report page. To bind the report you have to first set the source of report viewer to your report an include that page in iframe of master page. You cannot directly view the report on master page. Use telerik report viewer and set its source to your report.
How do I generate a multipage report in iReport where each page contains different invoice of a customer?
Also, each invoice will get its own datasource which is the detail as well as a support form of payment.
I've found how to implement a subreport here:
http://krams915.blogspot.com/2010/12/spring-3-mvc-jasper-sub-reports-using.html but I don't know how to create the multipage.
You can use page break after subreports. The contents after page break will be displayed in another page .
I have this web application using Spring Web Flow framework. In my main page I have a default display of a list of employees. When I click a particular row I need to redirect to another page displaying a detailed view of the row. I was thinking of passing the "name" field in my row through URL parameter.
Is this possible or can Spring web flow support getting parameters from the URL?
name
You can get your request parameters from the special EL variable requestParameters. See: http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#el-variable-requestParameters