reports

Load Image in Header of Crystal Repors

Hi Guys! I'm developing an application in Asp.Net 3.5 (vs2008), and I made some reports with Crystal Reports. Everything works fine but depending on the customer the Logo changes, and I'd like to set it in header's reports. I have a picture in "~/Images/logo.jpg", but I don't know how coud I set it dynamically (by code-behine) on Crysta...

Access 2007: Report Configuration in the Code?

I created a report in Access 2007. How could I view and change the SQL that the report is based on? For example, I am trying to find out how to change the way the report is sorted. I would expect this is based on the original sql query generated when I ran through the report wizard. Is this stored in some property sheet? How can I v...

Java Printing API / Jasper Reports keep pipes and deleted temp files opened

Using JDK6u21, JasperReports 3.7.4 and Tomcat 5.5.30. Running "lsof" command on linux (debian) for my tomcat process is normal until the application start using the printing API / jasper reports. After the application tries to print something or simply listing the network printers these are returned for "lsof": java 2398 root 3931r ...

How to get Values of arrayList in the Script using BIRT

The method RunReport( rptfile, o/p path, emp_id); is used to generate Reports using scripted Data Source. class Sal(){ public ArrayList<SalaryVO> getSal(String e) {} } which returns an ArrayList. How do i fetch Arraylist of values in the script : Open(): p= new Packages.joe.birt.action.sal(); s=p.getSal(params["emp_id...

How to create BIRT report based on multiple data sets

I need help in creating a BIRT report; the situation is that I have multiple queries but the report all columns should be grouped by One column for example (Operator) Like : Operator | Expr1 | Expr2 | Expr3 | Expr4 | op1 | ## | ## | ## | ## | op2 | ## | ## | ## | ## | op3 | ## | ## | ## ...

Using Reports with Flex 4

I am working on Flex 4 and I want to use reports with my Flex project. Is there any way to do the same? I mean any report library provided by Flex or any 3rd party application integration? ...

Adding a Table Of Content to a Jasper Report?

How do I go about adding a Table Of Contents to a Jasper Report? ...

crystal report datasource to business layer object colletion

In my project I want to use data source for a crystal report as collection of business layer object. How do I do this? I have 3 projects together in my solution one of them is business object layer. In grid and comboboxes or other controls I am able to bind these objects to the collection directly. I know how to bind crystal report to t...

How do I handle large resultsets in Crystal Reports using Java?

Hello - Problem Definition I have a performance problem displaying large/huge resultset of data on a crystal report. The report takes about 4 minutes or more depending on the resultset size. How do you handle large resultsets in Crystal Reports without a performance issue? Environment Crystal Reports XI Apache WebSvr 2.X Jboss 4...

Is There any design pattern to make reports in my application?

Hi! I am doing an application and i will show some reports to the users. I would like to know if there is a pattern that helps me doing any report that i want. I also would like to provide the user to choose the fields that he wants in the report. I think it would help many people here, because we usually have reports in our applicatio...

Crystal Reports off-center Reports...

We use crystal reports 11.5 and for some reason one of our Report files all the reports are off center in the report preview and when you export to PDF but this happens on ONLY a couple PC's, others work fine. Any thoughts? Any machine specific settings for Crystal Reports that handles this behavior? Thanks! ...

Are there any useful libraries/service for creating custom web application-level stats?

I run a website for music students that allows them to stream a variety of content from a number of sources. Our primary 'customers' are really the librarians at the institutions who subscribe to our service, so it's important to them to see the actual usage of the service, but they want more information than simple web analytics are ab...

Where is The Abandoned Cart Report Located in Magento?

I would like to see how the abandoned shopping cart report is being generated from (what models it is using). I am hoping to add the ability to split out the customers first and last names since we want to use this to import the information from Magento into our email list management program. Does anyone know where this report is gene...

Not getting Multiple DataSets when we call stored proc that returns multiple DataSets in SSRS Report

Hi, I have SP called "GetDUPRecords" and this SP will perform some operations and returns 3 result sets. First Result Set: will get More records, basically need to display in SSRS Report. Second Result Set: will give one row on doing some operations on Result set 1. Third Result Set: will give one row on doing some operations on Result...

Crystal Reports Formula Evaluation - Once per section?

I've written a formula as follows whileprintingrecords; shared numbervar level1; level1:=level1+1; ToText(level1,0); And placed it into a report as so: Report Header a | {formula} {Text:Introduction} Report Header b | {formula} {Text: Scope} Report Header c | {formula} {Text: Overview} Group Header a | {formula} {Grou...

How to create dynamic reports in PHP with Mysql

I'm designed a web application in PHP which conects to a database in MySQL, this application will generate reports according to the fields that a user choose from diferents tables, there is a way to do this, preference by code. (and software tool is acceptable too) ...

Show Report Pages Count Only On Print

In MS Access reports, page counts can be displayed using a text box with the following: = "Page " & Page & " of " & Pages & " Pages" However, this is problematic for large reports, as Access cannot open the first page of the report in Preview until ALL pages have been formatted (so it knows the total number of pages). Ideally, in Pre...

MS Access - Adding unbound fields at design time

I would like to create an Access report in which the record source is created via ADO code and then set as the record source for the report when the report is run. The problem I am running into is how to add fields to the report since the recordset is bound to the report at run-time and not design time. Is there way I can manually add t...

.net library for displaying dicom structured reports

I am using clearcanvas library to read and work with dicom files. However, as stated here http://www.clearcanvas.ca/dnn/Community/Forums/tabid/69/aff/8/aft/14041/afv/topic/afpg/1/Default.aspx they don't support dicom structured reports yet. Do you know any other free .net library or dll which I can use for that? Do you have any other sug...

How to create a xaml databound report in WPF?

I want to create a report that can be printed, exported as PDF or Word document. All of the reporting frameworks I've seen so far, insist on creating a connection to database directly which is absurd. My data comes from WCF service inform of an object. Following is the structure of object. ReportData { public UserInformation Basic...