Jump to content
We've recently updated our Privacy Statement, available here ×

hozawa

Members
  • Posts

    5,224
  • Joined

  • Last visited

Community Answers

  1. hozawa's post in Jaspererver PDF Export Error - Path cannot be Empty was marked as the answer   
    Seems you're using a non-default font in your report. You'll need to create an custom font jar file and add it to JasperReports Server's jasperserver-pro/WEB-INF/lib folder. Check the following page for steps on creating custom font jar file
    http://community.jaspersoft.com/wiki/custom-font-font-extension
  2. hozawa's post in Not able to login Jasperserver6.0.1 community version was marked as the answer   
    Seems like you're out of memory. Try increasing the jvm memory. Under your tomcatbin, create setenv.bat if it doesn't exist already and add the following to increase memory to 4GB. JasperReports Server needs at least 4GB memory.
    set JAVA_OPTS=%JAVA_OPTS% -Xms4g -Xmx4g
  3. hozawa's post in overrides_custom.css were not called at login page was marked as the answer   
    That's the specs. Theme can be set per organization whlle the login page is common to all. That's why overrides_custom.css is not used in the login page.
  4. hozawa's post in Problem in jasperserver war installation for community version was marked as the answer   
    JasperReports Server 6.0.1 doesn't  support JDK1.8. You'll have to use Oracle JDK1.7 or Oracle JDK1.6.
  5. hozawa's post in Print and Staple documents was marked as the answer   
    You'll need to send PCL instructions to your printer. Check your printer documentation on how to do this. There's is a direct printing example in the JasperReports library that you may want to look at to get those instructions to the printer.
  6. hozawa's post in Suppressing page break in Web Browser while inserting page breaks in PDF was marked as the answer   
    I'm using JasperReports Server 6.1.0J, which contains bug fixes and added features.
  7. hozawa's post in Can I Install jasper server with apache httpd instead of tomcat? was marked as the answer   
    I think you mean Apache httpd server. Unfortunately, you need Java Application container and httpd servers are not application containers. You can front the tomcat with a httpd server so users would have to pass through httpd server.
  8. hozawa's post in How to find that at which version of JasperSoft the .Jasper Reports were made? was marked as the answer   
    Select the "Source" tab in Jaspersoft Studio. In line 2, there should be a line like "Create with Jaspersoft Studio version 6.1.0.final using JasperReports Library version 6.1.0"
  9. hozawa's post in How to change report size of Adhoc Reports was marked as the answer   
    My bad on this. The report size changes OK when I change actual_size.510.jrxml.
  10. hozawa's post in Visualize jobs service was marked as the answer   
    Visualize.js is just a report displaying tool. You can just use the JasperReports Server REST v2 API to schedule a report.
    http://community.jaspersoft.com/documentation/tibco-jasperreports-server-web-services-guide/v610/scheduling-report-1
  11. hozawa's post in Theme inheritance in multi-tenancy JRS was marked as the answer   
    You can add the ?theme=xxx url to regular users logging in - I think this will be easier to do.
    Anyways, it's actually a bad idea to use iframe. If you just want to display a report, it's better to use REST v2 API to fetch the report in html format. If you have a commercial version, it's better to use Visualize.js. If you're a community version user, you can try node.js (https://github.com/agmoyano/node-jasper)
  12. hozawa's post in Editing a Report (5.5?) was marked as the answer   
    You'll need to edit Adhoc View and save it again as Adhoc Report. Adhoc Report does not support report design editing. If should have the original Adhoc
  13. hozawa's post in Drill Down-Detail Report- to open in a new tab/window was marked as the answer   
    In the Properties View, select "HTML" and expand "Hyperlink". Set Return target to "Blank".
  14. hozawa's post in Conditional formatting with Studio was marked as the answer   
    Use Conditional Style.
    http://community.jaspersoft.com/wiki/how-apply-conditional-formatting-your-text-fields
  15. hozawa's post in Store values return from query in text fields was marked as the answer   
    Just set the values in Text Field component expression. Text Fields are used to display field values. If you want to use the values else where, use Varialbles instead.
  16. hozawa's post in Make a split/marge cells in table was marked as the answer   
    You can just put 4 text fields in 2 columns and 4 rows
  17. hozawa's post in Create a Pyramid chart using ireports was marked as the answer   
    Have you checked the following page?
    http://community.jaspersoft.com/wiki/widget-charts-reference
     
    You may also use Custom Visualization component and use something like D3.js
    http://community.jaspersoft.com/wiki/creating-your-custom-visualization-components-v60x
  18. hozawa's post in Jaspersoft Studio6.1.0 Doesn't show EUDC characters was marked as the answer   
    This is a bug. I'll just report it in to get it fixed.
  19. hozawa's post in Jasper iReport on Ubunutu 15.04 was marked as the answer   
    I don't think iReport is supported on Ubuntu 15.04. As has been stated several times already, iReport development has stopped last year and is due to be retired at the end of this year. Jaspersoft strongly urges users to use Jaspersoft Studio instead.
  20. hozawa's post in Can I run two versions of iReport simultaneously in one machine. was marked as the answer   
    Yes. If you're going to upgrade to 5.6.0, better to think about using Jaspersoft Studio because iReport support is going to terminate at the end of this year.
  21. hozawa's post in Summing strings was marked as the answer   
    Seems to be working.
     
    <?xml version="1.0" encoding="UTF-8"?><!-- Created with Jaspersoft Studio version 6.1.0.final using JasperReports Library version 6.1.0 --><!-- 2015-08-04T05:40:04 --><jasperReportxmlns="http://jasperreports.sourceforge.net/jasperreports"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreportshttp://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="test"pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20"rightMargin="20" topMargin="20" bottomMargin="20"uuid="03c6ea1c-5c81-4a19-8d94-111f20cd415b"> <property name="com.jaspersoft.studio.data.defaultdataadapter" value="sampleDatabase"/> <queryString> <![CDATA[select * from test.test]]> </queryString> <field name="col1" class="java.lang.String"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="col2" class="java.lang.String"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <field name="col3" class="java.lang.String"> <fieldDescription><![CDATA[]]></fieldDescription> </field> <variable name="Variable_1" class="java.lang.Double"> <initialValueExpression><![CDATA[Double.parseDouble ($F{col1})]]></initialValueExpression> </variable> <variable name="Variable_2" class="java.lang.Double"> <initialValueExpression><![CDATA[Double.parseDouble ($F{col2})]]></initialValueExpression> </variable> <variable name="Variable_3" class="java.lang.Double"> <initialValueExpression><![CDATA[Double.parseDouble ($F{col3})]]></initialValueExpression> </variable> <variable name="total" class="java.lang.Double"> <initialValueExpression><![CDATA[$V{Variable_1} +$V{Variable_2} + $V{Variable_3}]]></initialValueExpression> </variable> <title> <band height="79" splitType="Stretch"> <textField pattern="#,##0.000"> <reportElement x="240" y="20" width="100" height="30" uuid="ff21d30b-5d5a-4e20-8d5d-1d66da270d5c"/> <textFieldExpression><![CDATA[$V{total}]]></textFieldExpression> </textField> </band> </title></jasperReport>[/code]
     
  22. hozawa's post in data definition of sample data sources was marked as the answer   
    I think the sample database is using hsql database. Use something like squirrel sql client.
    OR
    Just look at my page for the ddl I've converted to use in MySQL database.
    http://bi.lakeel.com/usersupport/tutorial/download/sampleDB.sql
  23. hozawa's post in http://jasperreports.sourceforge.net seems to be down was marked as the answer   
    Seems to be a problem with sourceforge site.
    http://sourceforge.net/blog/author/community/
  24. hozawa's post in How to multiply and divide together with BigDecimal ? was marked as the answer   
    You should be using compareTo instead of equals
    ($V{GroupTotalAccrualBasis}.compareTo(new BigDecimal("0.0"))) == 0 ? newBigDecimal("0.0") :($V{GroupTotalAccrualBasis}.multiply($V{bill_payAmount}).divide($V{GroupTotalAccrualBasis}))[/code] 
  25. hozawa's post in Install Jasper Report server Using WAR File Binary Distribution was marked as the answer   
    JasperReports Server stores information necessary to run the server in the database. Such information includes user/password and themes.
    As such, you won't be able to setup JasperReports Server without a database.
    JasperReports Server officially only supports MySQL, Oracle, PostfreSQL, DB2, and SQL Server as a database to use to store server information.
×
×
  • Create New...