reporting

How can I generate reports containing charts with Pentaho and Java?

流过昼夜 提交于 2019-12-13 08:08:13
问题 We have a Java EE based web application and we want to integrate Pentaho reporting API into this application. So, I'm trying to learn how Pentaho can automatically generate reports containing charts. I have downloaded Pentaho BI server and played with it for a few days. But I'm still clueless about the following issues: How to generate reports dynamically at runtime without loading those *.prpt files. Where I can get a simple tutorial about dynamic report generation What the difference is

Multi-language report in C#

浪子不回头ぞ 提交于 2019-12-13 06:23:22
问题 I'm writing reporting application in C# (local reports). I've made report patterns (rdlc files) and now I'm trying to make them autotranslating due to localization of user. I've managed to make a single translation (translation of one field, but there are many of them) with resource file, but this requires parameter to every textbox I use in report : ReportParameter p = new ReportParameter("Report1Parameter3", GlobalStrings.FieldText); this.reportViewer1.LocalReport.SetParameters(p); Is there

Running multiple instances of single parameter report at once

大憨熊 提交于 2019-12-13 06:21:13
问题 I have a report that takes one parameter (an order no) and creates a document for that order, pulling in some address fields, etc. My customers want the ability to select multiple order numbers at once and print out say 10 different sheets, one for each order. everything would be the same on each sheet, save for the order specific information. my problem is that currently, toggling the parameter to accept multiple values jams all the information for all 10 orders into the same place on one

Report Services sort column chart

老子叫甜甜 提交于 2019-12-13 05:58:24
问题 I have a report containing a regular column chart that groups on product (column A) and the chart column values are the sums of the cost (column B). By default these are sorted alphabetically on the product string. I want it to sort the column values by default and then I would like to provide and option for the user to be able to switch between product name and column value. How do I do this? Thanks 回答1: You can use a Sort By report parameter of Text type. Set the Available Values and

Change output directory of maven surefire-plugin

筅森魡賤 提交于 2019-12-13 05:48:29
问题 I'm trying to change the output folder for the XML files which get generated by the surefire-plugin in a maven project. I stated the target output folder inside the configuration brackets of the report-plugin as well as in the maven-site-plugin (mentioned in the documentation). I also tried to state the maven-site-plugin within the reporting block but that doesn't seem to work as well. My XML files always get written into the default surefire-reports folder. My pom.xml has following entries:

Cross-Tabulate Non-Numeric Data in Cognos BI

ⅰ亾dé卋堺 提交于 2019-12-13 05:47:46
问题 I have a set of data which right now I have in a List. It looks something like this (sample data obviously) Event ID | Field Name | Value ------------------------------------- EV123 | Name | John EV456 | Name | Karen EV789 | Name | Bob EV123 | City | New York EV456 | City | Chicago EV789 | City | Los Angeles EV123 | State | NY EV456 | State | IL EV789 | State | CA The Event ID and Field name values are all unique - for each combination of Event and Field Name there is only 1 row. There are

.prpt reports running from java

北战南征 提交于 2019-12-13 05:24:34
问题 Earlier I worked with Pentaho reports, where I can create report with pentaho report designer and deploy .prpt file onto into BI server. It will work fine. Now I am looking for a solution where I can put .prpt file in a Java program and run just like jasper reports (.jrxml files). Because I need to integrate Pentaho reports with my web application. I may be asking a very basic question. But I did not find the proper document on this. Please point me to some correct location and a sample code

why libreoffice sdk crash when simultaneosly and concurrently create documents through a webservice?

半世苍凉 提交于 2019-12-13 04:44:26
问题 i am running a webservice that replace text in a docx template and then convet it to pdf. i am using ubuntu 18.04 and glassfish server for its deployment when i made a single request for the service of converting everything is ok , but when i made a double request too fast like a double clicking issue or concurrent request, i got this exception: com.sun.star.lang.DisposedException at com.sun.star.lib.uno.environments.remote.JobQueue.removeJob(JobQueue.java:201) . . aused by: java.io

Telerik Report : Starch line in Detail band or Add Empty rows

﹥>﹥吖頭↗ 提交于 2019-12-13 04:22:16
问题 I am trying generate one sale bill format format in telerik report design. I Need Output like detail band is grow to fit page size. like adding blank row. i have used table inside details band. Is there any property in detail band or in table to fit page size? or i have to manually add blank rows? 回答1: You can set the Docking property by selecting the table and then using the property window to set the value. Set it to Fill by clicking in the value box and selecting Fill . Alternatively you

Hiding/showing report field based on values

十年热恋 提交于 2019-12-13 03:58:58
问题 this is a really simple query but I have a total mental block with it. I am modifying the Customer Account Statement report, and we have two Invoice ID Fields, I want to hide one if there is a value in the other. For example; If(custTrans.InvoiceID_1 != '') { return CustTrans.InvoiceID_1 } else return InvoiceID_2; I understand this would be carried out in Fetch Method, but I believe this is not the case, I have tried several ways of carrying out this change but have had no luck, any