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

dretwk

Members
  • Posts

    6
  • Joined

  • Last visited

dretwk's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. I found a solution, create subreport with xml data source in masterSubreport, use connectionType "Use a data source Expression" and apply data source expression like this: new net.sf.jasperreports.engine.data.JRXmlDataSource("/path_to_xml_file/file.xml").dataSource("/root/field[@id="+$F{FIELD}+"]")[/code]
  2. I have a report with SQL main data source, I'm need to pass data from SQL to another data source Xpath, can I create table in report with main SQL data source and inside this report table with Xpath data source?
  3. "Print Repeated Values" have differences in iReport 4.5.1 and Jaspersoft Studio 6.2.0? In iReport 4.5.1 "Print Repeated Values" just delete cell.
  4. Hello. I have no idea, how to realize data grouping in report, now my data present like this: no grouping1name110desc1detail11name210desc1detail22name320desc2detail33name444desc3detail43name455desc3detail5but I'm need to present data like this: with grouping1name110desc1detail1name2detail22name320desc2detail33name444desc3detail455detail5I'm using ireport 4.5.1.
  5. What did you mean match main and sub dataset in the subreport, can you describe please? I rephrase the question I'm need, that if subreports dont return data, a main report should not print blank page... As I understood the decision at the report level does not exist, and I m need to use subreport query in main query?
  6. I have report with main report query that return one row always select to_date($P{param0},'yyyy-mm-dd HH24:MI:SS') as dtstart,to_date($P{param1},'yyyy-mm-dd HH24:MI:SS') as dtendfrom dual[/code]In detail bands I have crosstab reports, that have own datasets, when crosstab dataset dont return data, iReport print blank page but in report property "When no data"="NoPages", how to avoid it and dont print blank page. I know one method for this use crosstabs query in main query how in this example: select to_date($P{param0},'yyyy-mm-dd HH24:MI:SS') as dtstart,to_date($P{param1},'yyyy-mm-dd HH24:MI:SS') as dtendfrom dualwhere exists (select * from crosstabdataset)[/code]but whether there are other ways?
×
×
  • Create New...