reporting

Java Business Intelligence framework with ad-hoc web reporting? [closed]

让人想犯罪 __ 提交于 2019-12-06 04:48:09
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I need a reporting framework that supports web views with ad-hoc reporting, as well as styled, canned PDF reports. My users will be non-power users, so I'll need to present something usable for the ad-hoc reporting. What's the best current solution in the java world? tim_yates There's a jasper reports plugin for grails Not used it yet myself tho... Candidates are Eclipse BIRT, JasperReports (has Grails plugin),

SQL query to compare product sales by month

谁说我不能喝 提交于 2019-12-06 04:40:39
问题 I have a Monthly Status database view I need to build a report based on. The data in the view looks something like this: Category | Revenue | Yearh | Month Bikes 10 000 2008 1 Bikes 12 000 2008 2 Bikes 12 000 2008 3 Bikes 15 000 2008 1 Bikes 11 000 2007 2 Bikes 11 500 2007 3 Bikes 15 400 2007 4 ... And so forth The view has a product category, a revenue, a year and a month. I want to create a report comparing 2007 and 2008, showing 0 for the months with no sales. So the report should look

Open Source & Free Adhoc / End User Reporting Tool [closed]

*爱你&永不变心* 提交于 2019-12-06 02:26:22
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am looking for an Open Source & Free Browser based Adhoc / End User Reporting Tool preferably based on Java (any other technologies are also welcome). I have researched on JasperServer Pro, BIRT & Pentaho. Even though these are open source & free, the end user/adhoc reporting components needs to be paid annual

Using PDI transformation in Pentaho BI server as data source for report parameters

允我心安 提交于 2019-12-06 02:22:34
Any advice on how to use PDI transformation as data source for report parameters in BI server's console? I've uploaded the prpt reports to BI server but the I get a message "Error parsing parameter information". The .prpt and .ktr files are both in the same directory. Actually, just realized that the issue could be solved by adding Transformation (KTR) as a resource. In this case, one can use the File-Resources menu selection. In the dialog select the transformation you wish to import and pick text/xml format. Give the resource a name and save it. You must save your PRPT file again ( File-Save

is there any Ruby or Rails reporting tools based on customizable templates?

二次信任 提交于 2019-12-06 01:35:22
问题 I am looking for a report generator done in ruby or rails which allow user to define a template first then fetch the data into the template. I have been looking through "The Ruby Box: reporting section" (https://www.ruby-toolbox.com/categories/reporting.html) There are two reporting tools are similar to what I am look for: Thin Reports: It is really good. You download a template editor then you define your own report template then by combine the thinreports gems you can get SVG or PDF report

Nested table in Telerik reporting?

蹲街弑〆低调 提交于 2019-12-05 23:53:38
I couldn't find any solution regarding this matter. If anyone use Telerik and have any idea about this please post. :) Currently I have an ojbect: Absence -> List<Available> Available I was successfully pass the List object to the main table and list out the Absence object. However when i try to do something like the ff, I have a mental block and I could not find anyway either on google or on their documentation ------------------------------------------------------------ | ABSENCE | ------------------------------------------------------------ | Field1 | Field2 | | | | ------------------------

What is a good reporting service for a simple database/hobbyist setup? [closed]

巧了我就是萌 提交于 2019-12-05 19:52:54
I have a meager production environment running on my PC for a little application that I work on in my spare time. At this point I have the basics setup, MySQL, junit, svn... I am midway through development and I now need to generate various reports (not development/logging/event reports). These reports are based on what data is in the database. Now, my question is this : Is there an existing reporting tool that accepts SQL and generates various reports (via: email, PDF, etc). Some tool which makes writing new reports easy, while also having a somewhat robust set of features. Does this software

How to get field lists using the OpenERP Report Designer Addon for OpenOffice / LibreOffice

最后都变了- 提交于 2019-12-05 18:46:57
I want to add fields to the reports and use them in python functions and do some coding inside the reports. I am using version 6.0.3 of OpenERP, I keep getting an empty field list. This is what the "add field" command on the addon should look like: I am using the "OpenERP Report Designer" addon for OpenOffice / LibreOffice. The "Add a field" command in the OpenOffice addon does not work for me. It shows an empty field list. I tried in 6.0.3 on a linux and a windows server and also 6.0.2 on a windows server. I believe all other commands of the report designer do work. Is there a way to make it

Reporting Template is missing in Visual Studio 2015 Preview

会有一股神秘感。 提交于 2019-12-05 18:09:19
问题 I have installed Visual Studio 2015 Preview. Now I am trying to create new report(.rdlc) from Add New Item Dialog But I am not able to View Reporting Template option in my Add New Item Wizard, Below is the image of my Issue: Can anyone please help me how to add Reporting Template in Add New Item Wizard Thanks in Advance Mr. GO 回答1: Got to Control Panel->Programs->Programs and Features. Select you Visual Studio Version, right click and 'Change'. The Visual Studio Setup splashscreen should

Using client side reporting vs. server side reporting?

ε祈祈猫儿з 提交于 2019-12-05 16:07:25
When do we use client side reporting and when do we use server side reporting? Which reporting is best practice (client/server)? This pertains to SSRS reporting. lomaxx Well... client side reporting you'd use if you've got something like a winforms client that you can't guarantee will have constant access to the data source. It might have a set of data cached on the client side which you need to report on even if the connection to the server is unavailable. Server side reporting you'd use in the scenario where you either need to simplify the report distribution and deployment as you just