reporting

RDLC (VS 2010) How to access nested class or arrays on DataObjects

How can I access the TD.SubNumber property and Numbers[] on RDLC? I keep getting #Error on my expressions "=Fields!TD.Value.SubNumber" and "=Fields!Numbers.Value(0)". public class TestData { TestSubData tdata = new TestSubData(); public TestSubData TD { get { return tdata; } set { tdata = value; } } ...

Programatically adding a sort condition to a table in BIRT using JS

Hi, I am attempting to write some script that simplifies table sorting and have been getting quite close but am now wondering if I have found a bug...or have just misunderstood limitations. So my relevant code: var reportRunnable = reportContext.getReportRunnable(); var reportDesign = reportRunnable.getDesignInstance(); var table = re...

Google Adwords Reporting With Dynamic PHP Conversion Value

I am using Google Adwords to push and track subscriber acquisitions on my site, but can not get the conversion reporting to work. Here is my setup. My subscribe form is dynamically loaded on my subscribe page by a Wordpress plugin I created. After validation the form is replaced with a thank you message with php, so the user is not r...

SQL Sproc Parameters: Setting Default Date value

I am trying to create a Stored Procedure that will be used for a Report and I want the 2 date parameters to have a DEFAULT value of today's date and 1 month prior. Is the below the proper way to do this? I was reading elsewhere that I should use COALESCE...(SEE HERE)This is a touchy production system so I wanted to double check before ...

Is there a way to add detailed remote crash reporting to a Flex Air application?

I will be releasing my Air/Flex application soon, but I am pretty sure there are a couple of bugs that may pop up on the various platforms that Air is available for. So I was wondering if there is a way to implement a mechanism, that would send an error report, logging where the error happened, to a remote server each time an app crashes...

Group Specific set of data by Day

Need to get a certain subgroup of data per day (Separated by weekday) For example Select weekday,bla,blabla,blablabla from dbo.blabla where bla = @StartDate and bla <=@endDate I need the output to be: Monday bla blabla blablabla Tuesday bla blabla blablabla If someone could help me that would be awesome. Thanks & Regards Jacques ...

Create Subscription programmatically in Reporting Services

I need to create a subscription for my SSRS reports in an asp.net page. I can show the reports in a reportviewer using Reporting.WebForms. SSRS is on the another computer in my network. For reportviewer, I use "admin" and "pass" for credentials which is the SSRS machine's admin username and password and it's ok. And admin has all the rol...

How can I make Conditional Formatting work for my Cognos Report

I have a simple list report in Cognos 8.3. I have a field with things like this: ETLJobX Completed - SUCCESS ETLJobY Completed - FAIL ETLJobZ Completed - SUCCESS ETLJobA Completed - SUCCESS ETLJobB Completed - FAIL I have a conditional formatter set to color the successes in green and failures in red. Works perfectly. Using the con...

Get an array containing the number of posts created in the past 2 weeks

I want to create sparklines that illustrate the number of posts created on my blog in the last 2 weeks. To do this, I need to first generate an array that contains the number of posts created on each day during the period in question. For example, this array: [40, 18, 0, 2, 39, 37, 22, 25, 30, 60, 36, 5, 2, 2] generates this sparklin...

Remove white space from reportviewer control exported into pdf?

I'm using the reportviewer control with Visual Studio 2008 in a asp.net 3.5 webforms application. I've created many reports that that render using the reportviewer control rather than running on the server with reporting services. This works great, but my problem is when I export to a pdf there may be a lot of white space that needs remo...

Excel spreadsheets with XML

Hi, I'm creating excel spreadsheets for reports using the XML method, where you export a valid Microsoft formatted XML, and then export it to Excel. So far everything works as it should, but I'm having some trouble with the colours. I've created one style such as: <Style ss:ID="s64" ss:Parent="s25"> <Font ss:FontName="Tahoma" x:...

format is changing SSRS Report

See this Image below http://i46.tinypic.com/2pt6jkn.jpg This is report in SSRS as shown when it is uploaded in the server. On my developement machine, the format is ok as shown in the pic below. http://i48.tinypic.com/be9dmh.jpg Why is the format getting messed up? ...

Which opensource tool is best?

Hi, In my application i have to create report.I don't know which opensource reporting tool is best either jassper report or pentaho report.If anyone has idea about this please share your view. And In what are the aspect jasperreport is differ with pentaho. ...

XtraReport and xrTable shows only 1 record.

I have a linq to sql generated object MyObject and this contains an EntitySet. Now i use an XtraReport with a BindingSource.DataSource = MyObject. I have a xrTable in the Detail band (which is the only one i use btw) with four xrTableCells binded binded to properties from MyObject.MyotherObject.Property. It keeps showing me only the firs...

Crystal Reports: How do I repeat a constant number of rows / headers on each new page in a cross-tab?

I have some data that I've staged in my database as such: RowHeader ColumnHeader Value Row1 Col1 (1,1) Row1 Col2 (1,2) Row1 Col3 (1,3) Row1 Col4 (1,4) Row1 Col5 (1,5) Row2 Col1 (2,1) Row2 Col2 (2,2) ...

Seeking good examples of report data selection user-interface

In an ongoing attemt to reinvent the wheel only when necessary, I am looking for good examples of user interfaces for data selection for reports. I hope to see examples raising the bar above the following: ...

Crystal Enterprise - Business Objects - is there a similar alternative?

We are reviewing our need for Crystal Enterprise - Business Objects. Our requirements are to have a way for users to login and choose from an selection of reports dependant on what they have access to. These reports are all designed in Crystal Reports and link to various databases. Are there any enterprise type solutions for hosting r...

Are there .NET development tools out there that can help serve as a data issue reporter and tracker?

Hi all, I need to build a system that generates reports on data exceptions (e.g. this value is stale because it hasn't been updated in x days). Once they have a daily report on data quality issues my users would like to have a bunch of filtering capability (with customizable public and private filters) and then be able to categorize and...

How to show SQL reports in a web application without Reportviewer control in asp.net

hi all. i wants to know that is there is any way to show reports without reportviewer control My reports are deployed on the report server. now i wants to show these reports in a web application. Please let me know that the any other way to show reports. I do not wants to use report viewer control. ...

C# Report Wizard and Entity Framework.

This is probably quite simple, but I just don't know how to do this... I have a reasonable complex SQL Server database containing multiple schema's for data and a generic view to provide information over all those views. (Basically, it lists all extended properties of all schema's.) This setup cannot be changed since every schema is spe...