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

dayana

Members
  • Posts

    23
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by dayana

  1. We are using JasperBI 3.7.0.1 and application is deployed in solaris. The issue which we are facing is \' not able to open the saved docx document\'. While openning it\'s giving an error. Screenshot is attached. We analysed and found that the issue is while showing an image. Please verify and let us know how to solve this issue or any work around.
  2. hi, i am working on jasperBI3.7 and trying to use subreports, i have 2 JRXML's based on a parameter value i am trying to execute either of them.i have tried all possible ways to get this running,it seems like without adding a dummy field to the master report from domain the subreport doesnt work, it throws null pointer exception. I Thik this is a serious bug in jasperserver3.7 and none of your ultimate guides are helping,I request one of you to answer my query and explain whether its a bug in subreport or explain how to use subreport. I have searched the entire forum for similar problem and didnt find any suitable answer. this is a serious set back my team is facing as we have adopted jasperserver 3.7 to develop reports. Regards Dayana:):)
  3. hi teodord, thanks for your solution.....the problem got solved it was datasource expression problem
  4. hi , you can pass the list from java to jrxml, create a parameter of type java.util.Collection or java.util.List in the jrxml.....
  5. hi i am using custom data sources (java bean datasources). one masterreport and two subreports when i am compiling subreports and preview them seperatly they working fine but when i add both the subreports tag to masterreport data is not displaying what could be the problem? Regards Dayana Post Edited by dayana at 07/24/2009 09:17
  6. Post Edited by dayana at 09/22/2009 09:07
  7. hi, i am new this concept,forgive me for any mistake. i want to set a custom bean as a JavaBean DataSource, do i need to define my bean in the package it.businesslogic.ireport.connection ? thanks in advance Dayana
  8. hi, i am new to Dynamic Jasper.... i am getting an error.....could ya pls help me???? am i missing any jar??? --------------------------------------------------------------------------------------------------------------------------------------------------------- 0 [main] INFO core.DynamicJasperHelper - generating JasperReport 0 [main] INFO core.DJJRDesignHelper - obtaining DynamicJasperDesign instance Exception in thread "main" java.lang.NoSuchMethodError: net.sf.jasperreports.engine.design.JRDesignStyle.setParentStyleNameReference(Ljava/lang/String;)V at ar.com.fdvs.dj.domain.Style.transform(Style.java:230) at ar.com.fdvs.dj.core.layout.AbstractLayoutManager.addStyleToDesign(AbstractLayoutManager.java:221) at ar.com.fdvs.dj.core.layout.AbstractLayoutManager.applyStyleToElement(AbstractLayoutManager.java:443) at ar.com.fdvs.dj.core.layout.ClassicLayoutManager.generateTitleBand(ClassicLayoutManager.java:372) at ar.com.fdvs.dj.core.layout.ClassicLayoutManager.startLayout(ClassicLayoutManager.java:115) at ar.com.fdvs.dj.core.layout.AbstractLayoutManager.applyLayout(AbstractLayoutManager.java:132) at ar.com.fdvs.dj.core.DynamicJasperHelper.generateJasperReport(DynamicJasperHelper.java:453) at ar.com.fdvs.dj.core.DynamicJasperHelper.generateJRXML(DynamicJasperHelper.java:337) at deutschebank.reports.business.services.FastReportTest.main(FastReportTest.java:50) Post Edited by dayana at 07/16/2009 07:57
  9. hi, i am new to Dynamic Japser....please suggest any guide to start dynamic jasper...... Regards Dayana
  10. hi, when i am trying to export an awt image to a pdf,the image is coming fully black, please help me regaring this . PDF is attached.
  11. hi, i have attached my jrxml, my actual problem is that i want to draw a chart from a complex dataset, which will be passed as a parameter from java. please help me to pass the dataset from javacode to jasper file :( Post Edited by dayana at 07/13/2009 10:20
  12. you are not clear.... please attach the jrxml......
  13. hi, Specify the calculation type as sum when u return the variable from subreport.i am also doing some calculation similar to this it works fine for me......... Thanks &Regards Dayana Baby
  14. hi, if u want to give a relative path declare a parameter type of string.and pass the path through hashmap.........let me know if it helps......
  15. hi, for setting names for excel sheet u can use the following java code new String[]{"sheet1","sheet2","sheet3"}; String [] para = exporter.setParameter(JExcelApiExporterParameter. SHEET_NAMES, para);
  16. hi, thank u for your reply......i am not using that list anywhere in my jrxml,i am just declaring it....then only i am getting this error.......
  17. your code looks fine.......i think there is some problem with your dataSourceExpression.......
  18. hi, For passing values from master report to sub report u can use subreort parameters masterreport :- <subreportParameter name="time"> <subreportParameterExpression><![CDATA[$F{CLOSURE_TIME}></subreportParameterExpression></subreportParameter> subreport:- <parameter name="time" isForPrompting="false" class="java.lang.String"/> Regrds, Dayana Post Edited by dayana at 07/10/2009 08:54
  19. hi, you can make use of subreport return variables and set the resettype as report for finding total. For reference i will recommend The Definitive Guide to iReport.pdf , it is very useful and u can directly download it from net :) Post Edited by dayana at 07/10/2009 04:46 Post Edited by dayana at 07/10/2009 04:47
  20. i am sorry for the above code Map map=new HashMap(); map.put("paraname",paravalue);
  21. hi, if you want to pass a parameter from java to jasper file you can pass it through hashmap for ex:- new let me know if its help :) Map map= HashMap(); map.put("paraname",paravalue);
  22. hi, i am getting the following error when i am tring to pass a list as a parameter Exception in thread "main" java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.math.BigDecimal java :- ArrayList lst=new ArrayList(); lst.add(sum1); lst.add(sum2); lst.add(sum3); lst.add(sum4); parameters.put( "li", lst ); jrxml :- <parameter name="li" isForPrompting="false" class="java.util.List"/> Post Edited by dayana at 07/10/2009 05:36
×
×
  • Create New...