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

kurian123

Members
  • Posts

    6
  • Joined

  • Last visited

kurian123'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. Hi Matt, Thanks for your replay, I tried in that way..but the top report is printing behind lower one The lower report is not going down...so it is overlapping...so what to do? I am putting all sub reports in same Group Header.... And I am giving the page break condition for each sub report in its on report by creating group header in each sub report.. One more problem I am facing..I am showing this report as PDF in browser...Generating byte stream and writing to Servlet response..And showing it as Attachment In my local deployment and Testing Deployment it works fine in all browses... But from production server it is not possible to open the attachment but it is possible to save and open The error is "...File can not found" Only in IE6 in Mozilla it works fine..but our client is using IE6.. Can you please provide solution for these problems.. Thank you very much for your support and help...
  2. I am sorry Matt, It is working.... Only one problem.. If the first subreport is not having 10 records the space is blank..(It keeps the place for 10 records)...Only in first page.... Can you please provide a solution for this.... All otherthings works fine... Thank You Very Much......
  3. Thank You Matt for your response, But it is not working.. Let me explain the scenario.. I have 3 reports 1) PackageDetails.jasper 2)ConatinerDetails.jasper 3)PaymentDetails.jasper I am passing 3 Data Sources for these 3 reports like JRDataSource jdsPackage = new JRBeanCollectionDataSource( packageDetailsList); JRDataSource jdsContainer = new JRBeanCollectionDataSource( containerDetailsList); JRDataSource jdsCharges = new JRBeanCollectionDataSource( paymentDetailsList); and passing these DataSource values through Parameter Map of Main Report like… reportParameterMap.put(FieldNameConstants.PACKAGE_DATA_SOURCE, jdsPackage); reportParameterMap.put(FieldNameConstants.CONTAINER_DATA_SOURCE, jdsContainer); reportParameterMap.put(FieldNameConstants.PAYMENT_DATA_SOURCE1, jdsCharges); And passing through main report like try { responseByte = JasperRunManager.runReportToPdf(contextPath + JASPER_PATH, reportParameterMap, jdsPackage); } catch (Exception e) { e.printStackTrace(); } Now I want to display N lines (Say 10 lines)of PackageDetails, N lines of ContainerDetails and N lines of PaymentDetails in MainReport in each page…. If report count exceeds it has to print in next page as in same format… Can you plese help me…… Post Edited by at 06/17/2009 08:25 Post Edited by at 06/17/2009 08:27
  4. Thanks for your reply... But i need reports one after another ( 3 rd will come under 2nd, 2nd will come under 1st) and print 10 rows of each record in every page..(In a single page 10 rows of each records i need to show..if records count exceeds the same format will be continue in second page and so on..) please specify how to set break condition for the reports... Please help me....
  5. Thanks for your reply.. Sorry I reduced my subreport page height to 200 , still it is printing first report in full length .. And after the completion of first one second one is starting..... But i need to print 10 rows of each record in each page..... Please help me....
  6. I want to display three reports in each page... Right now I am including these three reports as 3 sub reports..in three group headers.. Now it is printing after completion of one report next one ... My problem is how display 10 rows of each record..in each page all three record are not equal in size. Please help me....
×
×
  • Create New...