active questions tagged reporting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:02:47Z http://stackoverflow.com/feeds/tag/reporting http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1928563/sql-azure-reporting 1 SQL Azure Reporting CodeGrue 2009-12-18T14:36:27Z 2009-12-19T05:26:18Z <p>For everyone playing with SQL Azure, what are you using for reporting? Do the Visual Studio reports connect seamlessly? What about reporting services?</p> http://stackoverflow.com/questions/1924980/printing-an-access-report-and-decimal-place-weirdness 0 Printing an Access report and decimal place weirdness Michael Itzoe 2009-12-17T22:15:35Z 2009-12-18T13:43:36Z <p>My client has an Access (2000) application that we didn't write and we don't have access to the MDB (it's an MDE). One of the functions is to create a packing slip report. There's no option to preview, only print or save to file.</p> <p>There's a field that represents a weight; it's a Double field. On a standalone machine, it prints correctly, but when printing through Terminal Services it displays all zeros. Printing to XPS format, however, allowed us to see that it was formatting the number to about twenty decimal places, which suggests to me on the standalone machine it may be doing the same thing but left-aligning the field, but right-aligning (and thus displaying only the zeros) through Terminal Services.</p> <p>For what it's worth, I had nothing to do with this, but our network guy brought it to me. I can get more info if needed. Any ideas what may cause this to happen and how to fix it?</p> http://stackoverflow.com/questions/1472224/how-to-determine-the-number-visible-children-in-an-hierarchical-report 0 How to determine the number visible children in an hierarchical report? Daan 2009-09-24T14:51:17Z 2009-12-17T09:01:19Z <p>I am using SQL Server Reporting Services 2008 to create a report. A table in this report displays hierarchical data, using a ID and ParentID field in the data. Each data row has an ID field and a ParentID field, where the ParentID points to the ID of the row that is its parent. </p> <p>Displaying this hierarchically is no problem, but now I want to count the number of sub-items of a given row. For example:</p> <pre> row A (5) sub A (0) sub B (2) sub-sub A (0) sub-sub B (0) sub C (0) </pre> <p>I can calculate this count using the following expression:</p> <pre><code>=Count(Fields!IDField.Value, "RowDetails", Recursive) - 1 </code></pre> <p>However, sometimes I want to hide certain rows, e.g. I want to hide <code>sub-sub A</code>. How can I alter the above expression such that it will show a count of <code>(1)</code> for <code>sub B</code> in this case?</p> http://stackoverflow.com/questions/1366382/jasper-reports-cover-page 1 Jasper Reports: Cover page Luixv 2009-09-02T08:05:52Z 2009-12-16T12:52:27Z <p>Hi! I have a Jasper Report and I want to create for this report a cover page. The cover page must contain some information coming from the DB, like Company name, etc. I am trying to do this using a subreport but I didn't succeed. I've created a main report which contains first the cover page as a subreport and then the whole report as a second subreport. I got an empty report.</p> <p>My second try was to put inside the main report the cover page as a subreport but this didn't work as well.</p> <p>Any hint how to do this?</p> <p>Thanks a lot in advance. </p> http://stackoverflow.com/questions/343540/access-rdlc-elements-from-code-behind-file 1 Access rdlc elements from code behind file Marimuthu 2008-12-05T11:15:10Z 2009-12-15T21:52:47Z <p>can you please give any sample code for accessing the rdlc elements from code behind file.</p> <p>I have a text box in the rdlc file, i have to set the value for that from code behind file. Please help me</p> <p>Thanks </p> <p>P S Marimuthu</p> http://stackoverflow.com/questions/1906903/listing-all-the-files-that-make-up-a-deployed-project 0 Listing all the files that make up a deployed project Retrocoder 2009-12-15T11:46:52Z 2009-12-15T11:58:47Z <p>I’ve been asked to list all the names and version numbers of all the services, executables and dlls that make up my project. We need to keep a record of this for each release. Is there a tool in Visual Studio that will generate a report or log automatically ? If not, does anyone have a possible solution ?</p> http://stackoverflow.com/questions/1892118/data-views-or-web-services-for-reporting 0 Data views or web services for reporting Ajit Singh 2009-12-12T03:04:11Z 2009-12-12T03:25:25Z <p>We wish to expose some of the application data (in MSSQL Server) to external users so that they can consume it in their OWN reporting environment. </p> <p>Which would be the better options in terms of usability, ease of report creation, security or performance if the external users wish to do reporting in SSRS or Crystal reports:</p> <ol> <li>Exposing data via some secured views or sprocs </li> <li>Creating data web services in WCF</li> </ol> http://stackoverflow.com/questions/1883613/a-report-writer-for-non-programmers 1 A report writer for non-programmers? earlz 2009-12-10T20:03:54Z 2009-12-11T09:32:29Z <p>Hello, we are wanting for users to be able to write their own reports in our application.</p> <p>It is a web application. We don't care if they must download an application in order to create reports, but we need for them to be able to print off reports from the web in PDF format or similar.</p> <p>The report writer is to be used by non-programmers, or at best very light programmers(like the ones that make VBA macros and such). (the writer is not a core part of the program though. So if there is a learning curve, then that is acceptable to a certain extent)</p> <p>We were looking at Crystal Reports but it seems like it'll cost $7000 which is just way too much for right now(though our system is very flexible so could support it eventually). We are also looking at Fast Reports which seems pretty promising, but I'm not sure the report writer would be easy for non-programmers to grasp.</p> <p><strong>Can someone recommend a good report writer for non programmers that won't break the bank?</strong> </p> http://stackoverflow.com/questions/1873341/user-report-generation-by-various-attributes 0 user report generation by various attributes Joshua 2009-12-09T11:39:06Z 2009-12-11T00:08:44Z <p>User table contains the following attributes (dateOfBirth, race, gender, ...). We would like to generate a report in the following format.</p> <p><prE> Year Race All Male Female 2000 Asian 2000 1000 1000 2000 Hispanic 1000 500 500 2001 Asian 1500 700 800 2001 Hispanic 1300 400 900 ...</p> <p>Total 5800 2600 3200 </pre> Ideally I would like to view different reports filtered by the above parameters (e.g. All Asian Male users in year 2000, All Asian users b/w years 2000-2005, All Hispanic community in 2001). What would be the best way to fetch this data, as I would like to avoid too many hits to the database to construct this data. What framework would be ideal in fetching / representing this data</p> http://stackoverflow.com/questions/982815/open-source-freeware-reporting-software-package-type 3 Open source/freeware reporting software package type Burntoutreporting 2009-06-11T18:27:15Z 2009-12-10T05:24:02Z <p>I am spending too much time researching reporting tools. My setup is a (SugarCRM) MySQL database on a wamp server (or maybe it is lamp - I'm not sure yet), but likely to need other environments also. Clients are mostly WinXP, but could have a Mac or two. Would prefer a program like Crystal Reports, but free. </p> <p>Requirements are:</p> <ul> <li>easy to install (including drivers, java/.net, etc)</li> <li>easy to make the report/ rapid development</li> <li>easy for an end user to run</li> <li>db user &amp; Password and/or connection string not available to end user</li> <li>dynamic report that can be emailed or accessed via website by user</li> </ul> <p>Below is a list of programs I am going through with some comments, in no particular order. Feel free to suggest others. Do you have any comments on these? Which would you recommend?</p> <ul> <li><p>logi report <a href="http://freereporting.com/" rel="nofollow">freereporting.com</a></p></li> <li><p>Report Manager (confusing setup) <a href="http://reportman.sourceforge.net/" rel="nofollow">reportman.sourceforge.net</a></p></li> <li><p>ActiveReports for .NET <a href="http://datadynamics.com/Products/ProductOverview.aspx?Product=ARNET3" rel="nofollow">datadynamics.com/Products/ProductOverview.aspx?Product=ARNET3</a></p></li> <li><p>Jasper Reports (not user friendly) <a href="http://jasperforge.org/projects/jasperreports" rel="nofollow">jasperforge.org/projects/jasperreports</a></p></li> <li><p>DataVision (need to edit files for driver, not user friendly) <a href="http://datavision.sourceforge.net/" rel="nofollow">datavision.sourceforge.net</a></p></li> <li><p>Pentaho Reporting (Looks good so far) <a href="http://reporting.pentaho.org/" rel="nofollow">reporting.pentaho.org</a></p></li> <li><p>Open Report <a href="http://xtuple.com/openrpt" rel="nofollow">xtuple.com/openrpt</a></p></li> <li><p>RLib <a href="http://rlib.sicompos.com/" rel="nofollow">rlib.sicompos.com</a></p></li> <li><p>SQLServer Advanced Services (can't use for this project) Microsoft® SQL Server® 2008 Express with Advanced Services (broken URL) microsoft.com/downloads/details.aspx?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&amp;displaylang=en</p></li> <li><p>OpenOffice (too large to make user install) <a href="http://openoffice.org/" rel="nofollow">openoffice.org</a></p></li> <li><p>DTS I have a copy of the old DTS from the older versions of SQLServer, which I am pretty sure is freely redistributable.</p></li> </ul> <p>What is your view on these products? Are there others I should look up?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1511732/looking-for-a-reporting-tool-that-will-allow-vector-graphics-in-output-file-pdf 1 Looking for a reporting tool that will allow vector graphics in output file (PDF) Richard West 2009-10-02T20:51:48Z 2009-12-10T04:31:09Z <p>I have been tasked with evaluating our current system that we use for creating and outputing reports.</p> <p>Currently we are using Crystal Reports ver 8, (I know that this is and old version.), which has a custom commandline app that we wrote in C# to execute the report for a given parameter passed through the command line.</p> <p>We like Crystal becuase it's easy to setup and design the report. It's also easy to print and create a PDF file from crystal using our custom commandline program.</p> <p>One of the problems/complaints that we have is that Crystal does does not appear to have a method that will allow us to create a PDF file with a vector images, such as our company logo. Crystal Reports always converts an image into a bitmap. When the PDF is printed, the results are less than flattering, and the PDF file size is increased.</p> <p>Does anyone have any recomendadtions for a reporting product that we should consider? </p> http://stackoverflow.com/questions/414137/xy-scatter-chart-in-ssrs-wont-display-points 0 XY-Scatter Chart In SSRS Won't Display Points Dalin Seivewright 2009-01-05T19:05:26Z 2009-12-10T02:00:04Z <p>I'm a bit confused with this one.</p> <p>I have a Dataset with a BackupDate and a BackupTime as well as a BackupType. The BackupDate is comprised of 12 characters from the left of a datetime string within a table. The BackupTime is comprised of 8 characters from the right of that same datetime string. So for example: BackupDate would be 'December 12 2008' and the BackupTime would be '12:53PM.'</p> <p>I have added an XY-scatter chart to the report. I've added a 'series' value for the BackupType (so one can distinguish between a Full/Incr/Log backup). I've added a category value of BackupDate and set the Scale for the X-axis from the Min of BackupDate to the Max of BackupDate. I've then added an item to the Values with the Y variable set to BackupTime and the X variable set to BackupDate. The interval for the Y-axis is 12:00AM to 11:59PM and the formatting for the labels is 'hh:mmtt'.</p> <p>The BackupTime matches the format of the Y-axis. The BackupDate matches the format of the X-axis. 10 entries are retrieved by my Dataset and the Legend is properly populated by the BackupType field.</p> <p>No points are being plotted on the graph and no markers/pointers are shown if they are enabled. There should be a point on the graph for every point in time of each day there is a backup of a specific type.</p> <p>Am I missing something? Does anyone know of a good tutorial dealing specifically with XY-scatter graphs and using them in a way I intend?</p> <p>I am using the 2005 version of SSRS rather than the 2008 version.</p> <p>Screenshot of what my chart currently looks like:</p> <p><img src="http://img.photobucket.com/albums/v376/MythOpus/chart.jpg" /></p> <p>In case it could be dataset related:</p> <pre><code>SELECT TOP (10) backup_type, LTRIM(RTRIM(LEFT(backup_finish_date, 12))) AS BackupDate, LTRIM(RTRIM(RIGHT(backup_finish_date, 8))) AS BackupTime FROM DBARepository.Backup_History </code></pre> <p>As requested, here are the results of this query. There is a Where clause to constrain the results to a specific database of a specific server that was not included in the above SQL Query.</p> <pre>Log Dec 26 2008 12:00PM Log Dec 27 2008 4:00AM Log Dec 27 2008 8:00AM Log Dec 27 2008 12:00PM Log Dec 27 2008 4:00PM Log Dec 27 2008 8:00PM Database Dec 27 2008 10:01PM Log Dec 28 2008 12:00AM Log Dec 28 2008 4:00AM Log Dec 28 2008 8:00AM</pre> http://stackoverflow.com/questions/1340005/sourcesafe-reporting-how-to-get-custom-reports-in-a-usable-format 0 SourceSafe reporting - how to get custom reports in a usable format? Town 2009-08-27T09:49:27Z 2009-12-09T21:36:45Z <p>I'm hoping that i'm simply missing something, but I really can't see how to get the report I want out of SourceSafe.</p> <p>All I need is a report of the check-ins and corresponding comments for a particular date range. So, for example, I can see who has checked in what in the past month and what they said about the check-in.</p> <p>I wouldn't imagine it would be too much to ask but it possibly is... I've seen a couple of 3rd party VSS reporting tools about but most of these seem to only support up to v6 and we're on v8, which suggests to me that possibly v8 has more reporting options that I simply can't find!</p> <p>Can anyone lend any assistance? Thanks.</p> http://stackoverflow.com/questions/893219/visual-studio-2008-sp1-not-allowing-to-add-website-datasources 0 Visual Studio 2008 SP1 Not allowing to add website datasources JRGuay 2009-05-21T14:30:26Z 2009-12-09T16:11:40Z <p>Hi all.</p> <p>I have a project with two reports (master.rdlc &amp; detail.rdlc) wich both uses datasets to fill data. So far so good. They work ok, or used to work ok. For some reason, they lost the references to the datasets and the datasets are not showing in the Website Data Sources window so I'm unable to work with them.</p> <p>Also in the window Website Data Sources all the buttons but the "Refresh" one are disabled.</p> <p>What can be the problem?</p> <p>Thanks. Jose Guay</p> http://stackoverflow.com/questions/1097815/right-reporting-solution-in-a-net-environment 0 Right reporting solution in a .Net environment Bhushan 2009-07-08T12:40:33Z 2009-12-08T06:32:00Z <p>I have a reporting requirement in my web application for which I am looking for off the shelf solution. I don't have any experience of reporting softwares so thought of checking with SO community if anyone have any idea of reporting solution which fits my requirements.</p> <p>The application will be developed in .Net and apart from other functionalities, I need reporting capability. The look and feel of the entire app should look same.</p> <p>Is embedding a reporting software into a .Net application is possible or a separate server instance is required? Which one is better?</p> <p>I need to expose few tables from my database and user should be able to create any kind of queries(report) on that. User should be able to save the queries and name them.</p> <p>A query saved by a user should be only visible to him. A user belongs to a group. A User can create a report which is visible to whole group as well if he choose so.</p> <p>I am currently looking at izenda to see if it supports my requirement.</p> http://stackoverflow.com/questions/1861801/it-there-a-way-to-count-unique-users-that-download-podcast-from-itunes 0 It there a way to count unique users that download podcast from itunes? John C 2009-12-07T18:05:04Z 2009-12-07T18:09:53Z <p>I created a podcast, and set it up in itunes. I am able to track the number of downloads for the media files, and I would like to know how many different users are downloading the files. I tried using cookies / sessions, but that doesn't seem to work. Itunes ignores cookies, and thus a new session id is created every download. </p> <p>Is there another way to track unique itunes users of my podcast?</p> http://stackoverflow.com/questions/1859693/manage-timeouts-in-the-reporting-services-2005 0 Manage timeouts in the Reporting Services 2005 Akim Khalilov 2009-12-07T12:28:54Z 2009-12-07T12:30:00Z <p>Hi. There're some problem. I have a report which is executed long time. When the one hour passes "The page cannot be displayed" error is appear. I think it's smth. with timeout settings. </p> <p>This settings had been increased:</p> <p>C:\Program Files\Microsoft SQL Server\MSSQL.2\ReportingServices\ReportManager\Web.config C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\Web.config</p> <p>&lt;httpRuntime executionTimeout="<strong>18000</strong>"/&gt;</p> <p>C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\rsreportserver.config <br><br>&lt;Add Key="SQLCommandTimeoutSeconds" Value="<strong>18000</strong>"/&gt; <br>&lt;Add Key="MaxActiveReqForOneUser" Value="20"/&gt; <br>&lt;Add Key="DatabaseQueryTimeout" Value="<strong>18000</strong>" /&gt;</p> <p>Also:<br><br> Report Manager->Site settings->Report Execution Timeout->select “<strong>do not timeout report execution</strong>”.</p> <p>Changes doesn't solved my problem.</p> <p>May be there're smth. in IIS configuration? Is there're any other timeout settings I should to increase?</p> <p>Hope for your help. Thanks.</p> http://stackoverflow.com/questions/1849370/end-user-ad-hoc-reporting-tool-microsoft-sql-server-management-studio-or-microso 2 End User Ad-Hoc Reporting Tool: Microsoft SQL Server Management Studio or Microsoft Access? schultkl 2009-12-04T20:11:48Z 2009-12-04T21:10:20Z <p>Our centralized IT department has suggested two primary ad hoc query tools for our general user base of approximately 200 staff members: </p> <ol> <li><p>Microsoft SQL Server Management Studio 2008 (SSMS)</p></li> <li><p>Microsoft Access 2003</p></li> </ol> <p><strong>Environment</strong></p> <ul> <li><p>The backend database is a read-only Microsoft SQL Server 2005 database. </p></li> <li><p>The schema is 400+ tables; allowing access to the raw data for our general staff would be a disaster. </p></li> <li><p>We will be building an "abstraction layer" over the raw data for our general staff to run ad hoc queries against.</p></li> <li><p>The abstraction layer will most likely contain a number of views.</p></li> <li><p>A number of users have basic knowledge in Microsoft Access; none have used SSMS.</p></li> </ul> <p>Which of the above tools (or alternative) would be best for a decidedly <strong>non-techie</strong> user base of approximately 200 people? What are the pros and cons of each?</p> <p>Also, the IT department has suggested teaching people T-SQL so they may use SSMS. Is this reasonable?</p> http://stackoverflow.com/questions/1840262/large-analytics-database-responsive-retrieval-mysql 0 Large Analytics Database Responsive Retrieval (MYSQL) unknown (google) 2009-12-03T14:37:54Z 2009-12-04T16:38:27Z <p>Hi Guys! I want to create a 'google analytics' type application for the web - i.e. a web-based tool to do some reporting and graphing for my database. The problem is that the database is HUGE, so I can't do the queries in real time because they will take too long and the tool will be unresponsive. </p> <p>How can I use a cron job to help me? What is the best way to be able to make my graphs responsive? I think I will need to denomalize some of my database tables, but how do I make these queries faster? What intermediate values can I store in another database table to make it quicker?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1844097/jasperreports-with-resolution-different-than-72dpi 1 JasperReports with resolution different than 72dpi Renato 2009-12-04T00:32:08Z 2009-12-04T16:38:04Z <p>I've been trying to use JasperReports to print in a resolution above 72dpi, with no success.</p> <p>I need to use some resolution above 72dpi because I'm going to print in those pre-formatted adhesive labels, which need a certain level of precision when setting the positions. But, as JasperReports can only use pixels, and AFAIK only supports the 72dpi configuration, I can't set the margins, spacings, etc correctly.</p> <p>For instance, when you need a 1mm configuration, you need to convert to pixels, which would be 3px as automatically converted by iReport (actually, the real value is ~ 3.78px, but pixel can't be decimal and iReport truncates instead of rounding it). But, when you calculate it back to mm (when you print, for example), it actually gets a size of ~ 0.79mm, not the old 1mm you needed. If considering the round value (4px instead of 3px), you would have a final printed value of ~ 1.06mm, still wrong.</p> <p>Even if you think 0.06mm or 0.21mm isn't something valuable, it actualy IS when you have 20 or more sequenced labels, and this margin of error gets bigger as soon as you increase the number of labels.</p> <p>Finally, is there any way I can use JasperReports to print reports with a milimetric precision or is there any workaround for this problem?</p> http://stackoverflow.com/questions/18952/what-is-your-reporting-tool-of-choice 11 What is your reporting tool of choice? jms 2008-08-20T22:01:16Z 2009-12-04T08:11:23Z <p>Every project invariably needs some type of reporting functionality. From a foreach loop in your language of choice to a full blow BI platform. </p> <blockquote> <p>To get the job done what tools, widgets, platforms has the group used with success, frustration and failure?</p> </blockquote> http://stackoverflow.com/questions/1660005/ax-get-stuck-in-a-loop-when-printing-a-report 0 AX get stuck in a loop when printing a report flaskis 2009-11-02T08:18:40Z 2009-12-03T12:09:32Z <p>Hi,</p> <p>A client is having some trouble printing a standard report in Axapta 3.0 SP3. The report finishes gathering data, and everything is fine. But when the program is trying to print it to screen it starts an endless loop. Down in the bottom left on the status bar it says "Page 1, Section: xxxxx" where xxxxx counts from 1 to 65536 and starts over again.</p> <p>I have overwritten all executesections and put a breakpoint on each, and I can see that it never gets to the pagefooter sections on the report. It is also only this report that doesn't work.</p> <p>Could it be an external factor that is messing things up, like a Windows Update or a printer driver? They've never had any problems before, and they have run this report on a weekly basis for the past 4-5 years.</p> http://stackoverflow.com/questions/1272244/matrix-reporting-services-problem 0 Matrix Reporting Services Problem unknown (google) 2009-08-13T14:17:13Z 2009-12-03T12:00:05Z <p>I have a matrix with rows indicating a name (Ex Store name) and I have data pertaining to that in the DATA cells. I also have another date field in this format (MM/DD/YYYY). I would like to use a cross tab between Store Names and Just the Month of the date field.</p> <pre><code> Jan Feb Mar Apr (From Date) </code></pre> <p>A (Store Name) 10 5 3 2 B 3 4 2 1</p> <p>is there any expression I can use to get the month format on the header of column.</p> <p>thx.</p> http://stackoverflow.com/questions/1503842/ssrs-2005-sorting 0 SSRS 2005 Sorting Jim 2009-10-01T13:06:34Z 2009-12-03T11:36:07Z <p>Hello,</p> <p>A quick question for someone, hopefully!</p> <p>In my .rdl file source I can see the tag "&lt; sorting >"</p> <p>Where abouts in the GUI (I'm using Visual Studio) can this property be set?</p> <p>Thanks in advance,</p> <p>Jim</p> http://stackoverflow.com/questions/1815074/birt-with-db2-giving-problem 0 BIRT with db2 giving problem rajesh 2009-11-29T09:11:46Z 2009-12-02T01:28:37Z <p>I have successfully connected to DB2 database using db2jcc.jar and now facing another issue.</p> <p>When i create a dataset and preview it. BIRT viewer throws following error. Cannot get the decimal value from column: 1. Cannot get BigDecimal value in the result set. SQL error #1: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002</p> <p>odaconsumer.CannotGetBigDecimalFromColumn ( 1 time(s) ) detail : org.eclipse.birt.report.engine.api.EngineException: Cannot get the decimal value from column: 1.Cannot get BigDecimal value in the result set.SQL error #1: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002 at org.eclipse.birt.report.engine.executor.ExecutionContext.addException(ExecutionContext.java:1121) at org.eclipse.birt.report.engine.executor.ExecutionContext.addException(ExecutionContext.java:1085) at org.eclipse.birt.report.engine.executor.QueryItemExecutor.executeQuery(QueryItemExecutor.java:88) at org.eclipse.birt.report.engine.executor.DataItemExecutor.execute(DataItemExecutor.java:75) at org.eclipse.birt.report.engine.internal.executor.dup.SuppressDuplicateItemExecutor.execute(SuppressDuplicateItemExecutor.java:42) at org.eclipse.birt.report.engine.internal.executor.wrap.WrappedReportItemExecutor.execute(WrappedReportItemExecutor.java:45) at org.eclipse.birt.report.engine.internal.executor.l18n.LocalizedReportItemExecutor.execute(LocalizedReportItemExecutor.java:33) at org.eclipse.birt.report.engine.layout.html.HTMLBlockStackingLM.layoutNodes(HTMLBlockStackingLM.java:63) at org.eclipse.birt.report.engine.layout.html.HTMLPageLM.layout(HTMLPageLM.java:90) at org.eclipse.birt.report.engine.layout.html.HTMLReportLayoutEngine.layout(HTMLReportLayoutEngine.java:101) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.doRun(RunAndRenderTask.java:151) at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:72) at org.eclipse.birt.report.service.ReportEngineService.runAndRenderReport(ReportEngineService.java:877) at org.eclipse.birt.report.service.BirtViewerReportService.runAndRenderReport(BirtViewerReportService.java:938) at org.eclipse.birt.report.service.actionhandler.BirtGetPageAllActionHandler.__execute(BirtGetPageAllActionHandler.java:131) at org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90) at org.eclipse.birt.report.soapengine.processor.AbstractBaseDocumentProcessor.__executeAction(AbstractBaseDocumentProcessor.java:47) at org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.executeAction(AbstractBaseComponentProcessor.java:143) at org.eclipse.birt.report.soapengine.processor.BirtDocumentProcessor.handleGetPageAll(BirtDocumentProcessor.java:183) at sun.reflect.GeneratedMethodAccessor43.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.process(AbstractBaseComponentProcessor.java:112) at org.eclipse.birt.report.soapengine.endpoint.BirtSoapBindingImpl.getUpdatedObjects(BirtSoapBindingImpl.java:66) at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397) at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186) at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83) at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454) at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281) at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699) at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:265) at javax.servlet.http.HttpServlet.service(HttpServlet.java:616) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327) at javax.servlet.http.HttpServlet.service(HttpServlet.java:689) at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:122) at org.eclipse.equinox.http.registry.internal.ServletManager$ServletWrapper.service(ServletManager.java:180) at org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90) at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111) at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:59) at javax.servlet.http.HttpServlet.service(HttpServlet.java:689) at org.eclipse.equinox.http.jetty.internal.HttpServerManager$InternalHttpServiceServlet.service(HttpServerManager.java:269) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428) at org.mortbay.jetty.servlet.ServletHandler.dispatch(ServletHandler.java:677) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568) at org.mortbay.http.HttpContext.handle(HttpContext.java:1530) at org.mortbay.http.HttpContext.handle(HttpContext.java:1482) at org.mortbay.http.HttpServer.service(HttpServer.java:909) at org.mortbay.http.HttpConnection.service(HttpConnection.java:820) at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986) at org.mortbay.http.HttpConnection.handle(HttpConnection.java:837) at org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245) at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357) at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)Caused by: org.eclipse.birt.data.engine.core.DataException: Cannot get the decimal value from column: 1.Cannot get BigDecimal value in the result set.SQL error #1: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002 at org.eclipse.birt.data.engine.odaconsumer.ResultSet.throwDataException(ResultSet.java:497) at org.eclipse.birt.data.engine.odaconsumer.ResultSet.getBigDecimal(ResultSet.java:289) at org.eclipse.birt.data.engine.odaconsumer.ResultSet.fetch(ResultSet.java:182) at org.eclipse.birt.data.engine.executor.cache.OdiAdapter.fetch(OdiAdapter.java:145) at org.eclipse.birt.data.engine.executor.cache.RowResultSet.next(RowResultSet.java:102) at org.eclipse.birt.data.engine.executor.transform.SimpleResultSet.(SimpleResultSet.java:80) at org.eclipse.birt.data.engine.executor.DataSourceQuery.execute(DataSourceQuery.java:731) at org.eclipse.birt.data.engine.impl.PreparedOdaDSQuery$OdaDSQueryExecutor.executeOdiQuery(PreparedOdaDSQuery.java:331) at org.eclipse.birt.data.engine.impl.QueryExecutor.execute(QueryExecutor.java:945) at org.eclipse.birt.data.engine.impl.ServiceForQueryResults.executeQuery(ServiceForQueryResults.java:233) at org.eclipse.birt.data.engine.impl.QueryResults.getResultIterator(QueryResults.java:160) at org.eclipse.birt.report.engine.data.dte.QueryResultSet.(QueryResultSet.java:92) at org.eclipse.birt.report.engine.data.dte.DteDataEngine.doExecuteQuery(DteDataEngine.java:129) at org.eclipse.birt.report.engine.data.dte.AbstractDataEngine.execute(AbstractDataEngine.java:253) at org.eclipse.birt.report.engine.executor.ExecutionContext.executeQuery(ExecutionContext.java:1755) at org.eclipse.birt.report.engine.executor.QueryItemExecutor.executeQuery(QueryItemExecutor.java:77) ... 56 moreCaused by: org.eclipse.birt.report.data.oda.jdbc.JDBCException: Cannot get BigDecimal value in the result set.SQL error #1: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002 ; COM.ibm.db2.jdbc.DB2Exception: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002 at org.eclipse.birt.report.data.oda.jdbc.ResultSet.getBigDecimal(ResultSet.java:353) at org.eclipse.datatools.connectivity.oda.consumer.helper.OdaResultSet.getBigDecimal(OdaResultSet.java:448) at org.eclipse.birt.data.engine.odaconsumer.ResultSet.getBigDecimal(ResultSet.java:285) ... 70 moreCaused by: COM.ibm.db2.jdbc.DB2Exception: [IBM][JDBC Driver] CLI0610E Invalid column number. SQLSTATE=S1002 at COM.ibm.db2.jdbc.net.SQLExceptionGenerator.throwColumnIndexError(Unknown Source) at COM.ibm.db2.jdbc.net.DB2ResultSet.checkHandlesAndIndex(Unknown Source) at COM.ibm.db2.jdbc.net.DB2ResultSet.getBigDecimal(Unknown Source) at org.eclipse.birt.report.data.oda.jdbc.ResultSet.getBigDecimal(ResultSet.java:348) ... 72 more</p> http://stackoverflow.com/questions/1774517/reporting-with-db2 0 Reporting with DB2 codemnky 2009-11-21T04:26:33Z 2009-12-01T21:31:38Z <p>I started learning .net about 3 years ago. I have gone thru a boot camp during that time learning OO and various data access technologies such as NHibernate, Subsonic, LINQ TO SQL. didn't wanna try EF cause it hasn't reached version 3 :) </p> <p>As far as reporting goes, I have heard that many ORM'S fall flat on their face when it comes to reporting. We have AS400 OR DB2 as our backend. I have heard that LLBLGEN does a good job on reporting for this product. But it is a commercial product and not FREE. Can someone point me to some good resources for Reporting from DB2? thanks for any links/blog articles</p> http://stackoverflow.com/questions/1051877/ruby-on-rails-what-reporting-and-or-charting-tools-are-available 4 Ruby on Rails: What Reporting and/or Charting Tools Are Available? Mark Brittingham 2009-06-27T01:09:38Z 2009-12-01T20:08:04Z <p>I'm just starting out with Ruby/Rails and am wondering what Rails developers use to provide reports and/or charts on Rails sites. In ASP.NET I use the tools from DevExpress but I don't know enough about the Rails ecosystem to know what is available. Any insight would be appreciated.</p> http://stackoverflow.com/questions/1822125/divide-by-zero-display-values 5 Divide by Zero Display Values Irwin M. Fletcher 2009-11-30T20:13:12Z 2009-12-01T18:17:10Z <p>What is the best way (most intuitive to users) or best practice for displaying the results of a divide by 0 error when doing reporting? Within the report, I capture this error, however, when displaying it on a human readable report; I am not sure how to note this.</p> <p>An example would be something like Weight / Revenue ratio. For a given terminal, on a given day, there may have been no revenue, but some shipments (which would have weight) may have been shipped. </p> <p>The current reports that I am looking at, handle this by placing a 0 in the column, however, this could be misleading, as this is not technically true.</p> <p>Another thought would be to leave it blank; however, it would be unknown to the user why the field was left blank.</p> <p>I also considered the standard Excel error, <code>#DIV/0!</code> however, this tends to make the report looked clutter.</p> <p>I am curious what others have done in the past for this situation.</p> http://stackoverflow.com/questions/1817188/easy-way-to-write-report-on-data 0 easy way to write report on data baron 2009-11-29T23:51:06Z 2009-11-30T01:17:49Z <p>looking for a good easy way to generate reports on data my application holds.</p> <p>rather than building it painfully by writing it all out and formatting it with /n 's etc is there an easier method? It could be into excel, or just a list... Maybe the only way is to do it like I was thinking...</p> http://stackoverflow.com/questions/1809213/is-there-a-net-reporting-tool-that-uses-office-templates 0 Is there a .Net Reporting tool that uses Office templates? Gimly 2009-11-27T14:55:01Z 2009-11-29T09:58:45Z <p>On the application I am currently working on, we need a way for users to generate reports in Microsoft Word or Excel format (export and print).</p> <p>One of the requirement is that the users would create the report template using a Word or Excel template document.</p> <p>I've tried to google a reporting tool that uses word and excel templates for report templates and the only one I found (Windwards) is way too expensive and wouldn't fit our needs. We cannot have a server to generate the reports, so the report would need to be generated directly by the application (Windows Forms).</p>