birt

BIRT Report not running in eclipse after update to windows 8.1

我们两清 提交于 2019-12-08 10:17:54
问题 I am not able to run the birt reports in eclipse after updating to windows 8.1 recently. Eclipse layout view works fine but when I run the report nothing happens. Below is the information I have when I debug report. Please suggest a way to fix this issue Oct 19, 2013 5:09:02 AM org.eclipse.birt.report.debug.internal.core.vm.ReportVMServer start INFO: [Server] client accepted Oct 19, 2013 5:09:02 AM org.eclipse.birt.report.debug.internal.core.vm.ReportVMServer$1 run INFO: [Server] enter

BIRT reports not show Unicode characters on Linux

ぐ巨炮叔叔 提交于 2019-12-08 00:14:13
问题 I have deployed BIRT3.7.1 reports on a Redhat Linux production server in a birt-viewer directory and the problem is that not all unicode characters are displayed, and after failure the left report is blank. Reports are developed on a windows xp x64 machine and I have copied all windows fonts to the linux machine but still the same problem. Any ideas how to fix that? 回答1: The problem was, that we used sans-serif font on the reports. Fixed it changing font to Arial. 来源: https://stackoverflow

Birt Eclipse, connecting to a SQLite database through ODBC? Do I need a specific JDBC driver for Birt to use?

二次信任 提交于 2019-12-07 23:58:20
问题 I have been working on this for a while now and, unfortunately have little previous exposure to Birt as well as JDBC / ODBC. I've been searching and searching but can't conclusively figure out what I need for Birt to be able to connect to an SQLite database through ODBC. I have setup the SQLit db on my windows machine to use ODBC. From here, however, I can't figure out, in the Birt Report Designer-> New data source-> JDBC data source what I am supposed to put in in order to access the DB. Do

BIRT does not show base64 encoded image

天涯浪子 提交于 2019-12-07 12:25:38
问题 I want to include images into a BIRT report. The images shall be given by a XML data source (base64 encoded). But the XML data source does not support the Blob data type. I found a nice answer in this BIRT question where the base64 encoded image data is included as URI ( data:image/png;base64,...BASE64DATA... ). So I tried myself with a small static example but BIRT (4.4.2) does not show the image. Firefox displays the image when I paste the URI into the address bar. Here is a small static

Drill Through not working in SpagoBI server in birt report

有些话、适合烂在心里 提交于 2019-12-07 09:28:46
问题 This is the setting of the hyperlink in birt report The script used to compute the param is as follows: if (params["idContratto"].match(row["contract_number"].toString()) == null){ if (params["idContratto"].value == "abc"){ row["contract_number"].toString(); } else{ params["idContratto"].value + "," + row["contract_number"].toString(); } } else{ if (params["idContratto"].length == row["contract_number"].length){ ""; } else{ temp = params["idContratto"]; temp = temp.replace(row["contract

Open Source Java Reporting Framework [closed]

北战南征 提交于 2019-12-07 01:57:12
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . i want to create few Reports which picks data from few SQL tables, So instead of creating different report's i want to create (or use

Why is my Crosstab being cut off in Excel?

馋奶兔 提交于 2019-12-06 16:43:14
问题 I'm attempting to create an excel spreadsheet using BIRT. The spreadsheet is a crosstab mapping two objects together. The number of rows and columns are dynamic based on values in a MySQL database. Currently I have a working implementation of the report for PDF output. Now, I am trying to create a second version of the report for Excel. I have copied the report design and begun adjusting it to work with Excel. Everything looks good, but only the first 3 columns are displayed after the header.

accessing parameters when writing a scripted BIRT data source in java

你离开我真会死。 提交于 2019-12-06 12:33:01
问题 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

BIRT report output not visible in “view report as PDF” option

懵懂的女人 提交于 2019-12-06 12:19:05
问题 I have recently installed BIRT in a 64 bit windows 8 machine. When I view a report in HTML output or any other output the report is visible just fine. But when I chose to view it as PDF , a blank page opens with a small cross on top left corner and nothing else. (attaching screen shot) I tried opening the same report on other machine (Windows 7) with BIRT "view as PDF" and it works fine. I have checked opening other pdf files on my machine, they open perfectly OK. Is there any other setting I

BIRT fontsConfig.xml font issue

≡放荡痞女 提交于 2019-12-06 10:05:25
I working with BIRT 2.6 on a Unix machine, therefore I have problems to write a certain font. I known I must edit the fontsConfig.xml file. But it didn't work: In short I have done this: <fonts> <font-aliases> <mapping name="Arial Narrow" font-family="LiberationSansNarrow-Regular" /> </font-aliases> <font-paths> <path path="/../../../fonts" /> </font-paths> </fonts> Is this configuration right? Is something missing/wrong? At all there are four config xml's: fontsConfig.xml fontsCconfig_pdf.xml fontsConfig_win32.xml fontsConfig_linux.xml Must I need to change all files, without the win32 file?