|
I am looking into the idea of creating a custom report builder and data tool to replace the ssrs report builder.
I am wanting something more like a query builder and data export tool rather than reporting.
The thing I want to use is the report model. ...
Answer Snippets (Read the full thread at stackoverflow):
You can quite easily use the web services provided with SSRS to get at the XML for a report model, and you may be able to then use this as a form of ORM to be able to get a LINQ a report is created with....
But...
Report Builder 2.0.
|
|
Is there free software that converts Crystal Reports .rpt files to SQL Reporting 2008 .rdl files?
Started by JonathanWolfson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See RptToXml.
There are several companies that offer RPT to RDL conversion services for different costs, but free software for this purpose is not available .
You'll quickly find out that this isn't allowed due to Crystal licensing restrictions .
|
|
It seems that due to ActiveX that Firefox can't display the print icon/button on the Report Viewer control in SQL Server Reporting services. Has anybody figured out a way to work around this or gotten this to work?
If it's not possible, does anybody know...
Started by Don on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You could ....
I found the div using the firebug firefox extension - it's great .
You could place a button in the "msrs-buttonHeaderBackground" div using a javascript button .
As you state, the print functionality is ActiveX, so it will not work in Firefox .
|
Ask your Facebook Friends
|
Report viewer from SQL reporting services in VS 2008 report control If I create a new report in VS 2008 they have a .rdlc extension and work correctly.
I have some reports that I was using in SQL reporting services. Extensions are .rdl and want to get...
Started by Maestro1024 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Remote rendering" report in your ReportViewer control)
basically re-create the whole report as a local report from scratch
It's unbelievable - but unfortunately, it's the truth let's hope with .NET 4 - and it will give a nice PDF....
|
|
We are using Reporting Services to generate a purchase order, which is rendered as pdf before displaying on the screen. The report works well, as is, except that now we have to add a Terms & Conditions page to every PO. I've tried placing it in the footer...
Started by Kyle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
ITextSharp (a port of the java version iText....
A similar question that may satisfy your requirements was posted and answered later today:
http://stackoverflow.com/questions/808670/combine-two-or-more-pdfs
Check out the PDFSharp...that looks interesting .
|
|
Hi,
Is there a way to configure the Report Server to Archive the reports to the Report Server or to a path on the File System.
I need to save the reports generated as .pdf files.
TIA.
Answer Snippets (Read the full thread at stackoverflow):
Click the Properties tab for that report.
Have you considered using "Report History"?
Here's how you create Report History:
In Report Manager, select the report for which you want history and view the report.
|
|
When do we use client side reporting and when do we use server side reporting?
Which reporting is best practice (client/server)?
This pertains to SSRS reporting.
Started by jazzrai on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Server side reporting you'd use in the scenario where you either need to simplify the report distribution are smaller as for many....
On the client side which you need to report on even if the connection to the server is unavailable.
|
|
Is there anyway to determine the form name that the report was called from? I would like to write some VBA code in report to determine where is the report was called from. I have Access 2003.
Started by THEn on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can open a report like this:
DoCmd.OpenReport "reportFoo", acPreview, , , , Me.Name
and something like this in the report:
Private Sub Report_Open End If End Sub
One way is to....
Remains open, store the information on the form.
|
|
Can any one tell me from crystal report and SSRS (Sql Server Reporting Service) which one is better to use?
Started by RBS on
, 19 posts
by 19 people.
Answer Snippets (Read the full thread at stackoverflow):
The Test and deploy model is pretty hearty, and the built-in ability to track report forbidding connection to other data ....
This makes for much around longer).
The connections (data sources) are separate from the report and can be shared.
|
|
Is it possible to hide or exclude certain data from a report if it's being rendered in a particular format (csv, xml, excel, pdf, html). The problem is that I want hyperlinks to other reports to not be rendered when the report is generated in Excel format...
Started by Catch22 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The way I did this w/SSRS 2005 for a web app using the ReportViewer control is I had a hidden boolean report parameter which was used in the report decide if to render text as....
Right, we ended up making two versions of the report.
|