reporting

accessing parameters when writing a scripted BIRT data source in java

六月ゝ 毕业季﹏ 提交于 2019-12-04 18:18:20
I am using BIRT reporting with a scripted POJO data source and am having trouble accessing report parameters. I am scripting everything in Java, rather than javascript. The code is below: public class StockDataSetHandler extends ScriptedDataSetEventAdapter { ... @Override public void open(IDataSetInstance dataSet) { count = 0; StockDaoMock mockStockDao = new StockDaoMock(); //The code below works in javascript. How can I do the equivalent //in Java? Where do I get params from? String paramValue = params["myparameter"]; stockData = mockStockDao.getStockValues(paramValue); } } BIRT's

Dataset with dynamic columns in tablix/matrix

青春壹個敷衍的年華 提交于 2019-12-04 18:01:51
I have a dataset that can come with 5 columns, columns 6, 7, 10, 20, or even 100. At least two are static, the remaining are dynamic (am making a scale according to a table exists in the database). How can I implement this in Reporting Services? How do I specify the field of tablix that the value is dynamic? The end result would be this: | TITLE | ENUNCIATION | GOOD | VERY GOOD | BAD | VERY BAD | ------------------------------------------------------------- | title 1 | question 1 | 5 | 3 | 1 | 0 | | title 2 | question 2 | 1 | 0 | 3 | 0 | | title 3 | question 3 | 0 | 0 | 1 | 0 | | TITLE |

Displaying unicode text in Rave Reports on Delphi 2009

时光怂恿深爱的人放手 提交于 2019-12-04 17:48:06
I am in the process of porting a Delphi 2006 app to Delphi 2009. Out of the box support for unicode has been easy - almost no work required. Most 3rd party controls already have Delphi 2009 updates available. Rave Reports (latest version 7.6.1, available here ) has also been updated, but I cannot seem to get it to correctly display RTF text containing Japanese characters. In Delphi 2006, I loaded RTF to the DataMemo component in a RVCustomConnection's OnGetRow event by reading the RTF from a screen control (TLMDRichEdit) using streams and then doing a CustomConnection.WriteBlobData. In the

Generate HTML report for WebdriverIO/Cucumber framework

。_饼干妹妹 提交于 2019-12-04 14:57:00
I am using WebdriverIO/Cucumber ( wdio-cucumber-framework ) for my test automation. I want to get the test execution result in a HTML file. As of now I am using Spec Reporter ( wdio-spec-reporter ). Which helps to print the results in console window. But I want all the execution reports in a HTML file. How can I get WebdriverIO test execution result in a HTML file? Thanks. OK, finally got some spare time to tackle your question @Thangakumar D . WebdriverIO reporting is a vast subject ( there are multiple ways to generate such a report ), so I'll go ahead and start with my favorite reporter:

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

蓝咒 提交于 2019-12-04 08:54:15
Closed. This question is off-topic. It is not currently accepting answers. Learn more . 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 license fees which is not quite affordable for us. So please tell you suggestions Thanks

Ruby on Rails: What Reporting and/or Charting Tools Are Available? [closed]

前提是你 提交于 2019-12-04 07:48:19
问题 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 5 years ago . I'm just starting out with Ruby/Rails and am wondering what Rails developers use to provide reports and/or charts on Rails sites. In ASP.NET I use the tools from DevExpress but I don't know enough about the Rails ecosystem to know what is available. Any insight would be appreciated. 回答1: Well I'd say that most

Jasper Reports: How to compile subreports

谁说我不能喝 提交于 2019-12-04 03:51:35
I have a standalone application, and one of its duties is to take the path of a *.jrxml file and compile it. I can do this without problem until a report with a subreport comes up, where the compilation of the master does not compile any of its children, resulting in a subreport *.jasper file not found later down the track. Is there any way to 1) Set the JasperCompileManager to automatically pick up subreports? 2) Get a list of paths to subreports contained within either a JasperDesign or JasperReport object? I have no direct access to the jrxml files, so modifying the reports to suit the

BIRT: pdf emitter, load/use fonts from relative path or from jar files

我的梦境 提交于 2019-12-04 03:44:15
问题 I use BIRT since early days and still have riddles regarding PDF emitter. Short story : Can I configure fontsConfig.xml to load fonts from relative path or from jars? Long story: We are using both FOP and BIRT for generating PDF in our web application. It would be nice to share fonts between libraries. Unfortunately, I can't find a way to do it with BIRT 2.3.1 The root of evil is fontsConfig.xml If I configure it like shown below it works fine: <font-paths> <path path="fonts"/> </font-paths>

Reporting Template is missing in Visual Studio 2015 Preview

和自甴很熟 提交于 2019-12-04 03:24:09
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 Got to Control Panel->Programs->Programs and Features. Select you Visual Studio Version, right click and 'Change'. The Visual Studio Setup splashscreen should appear, Click on Modify at the bottom left, and then under 'Windows and Web Development' select Microsoft SQL

asp.net - Generate Powerpoint file on the fly

ε祈祈猫儿з 提交于 2019-12-04 02:54:53
I have a client of my web based application who heavily uses the data from our system for powerpoint presentations. We currently allow data to export in more traditional file types...PDF, CSV, HTML, and a few others. Powerpoint doesn't seem to be really automated. Is there a way, on the ASP.NET server side, to automate the creation and on-demand download of a powerpoint file format for a report from a system? In this article , Steve suggests using Aspose's Slide application. He also explains step by step on how to generate the PowerPoint file. Here are some code excerpts (in VB): Opening an