reporting

How to render Active Reports WebViewer in ASP.NET MVC

对着背影说爱祢 提交于 2019-11-27 10:37:54
问题 I asked this question in the DataDynamics forum earlier today. I thought that maybe I'd get some sort of response here at SO. I am trying to get the WebViewer up and running in my ASP.NET MVC application. I am attempting to render the webviewer in the controller (webViewer.RenderControl(htmlTextWriter) and then put the results into ViewData and display the report in my view. I dont' even know if this is the correct way to go about this. Any help would be greatly appreciated. Controller code:

Rdlc tablix column header not repeating on every page “Repeat column header on every page” is already checked

你离开我真会死。 提交于 2019-11-27 10:31:27
问题 Here is my tablix properties What Am I missing? Please help thanks! 回答1: This is particulary tricky using Tablix ... Give a look at this link: what to do when the RepeatColumnHeaders Property in a Tablix isn’t working In Advanced Mode select the Static Row Group you want to repeat and set these properties: .RepeatOnNewPage = True .KeepWithGroup = After .FixedData = True It is also recommended to set Tablix property .RepeatColumnHeaders = True in case Microsoft will release a patch to this

Open Source .Net Reporting Tool [closed]

纵饮孤独 提交于 2019-11-27 10:09:40
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I am looking for a reporting service/tool for visual Studio. My only restraint is my web server is off limits to me as far as

Best ASP.NET reporting engine with custom reports creation ability [closed]

与世无争的帅哥 提交于 2019-11-27 09:58:57
问题 We need to choose the reporting engine for our ASP.NET application. The main functional requirement is an ability for end users (not programmers, just normal users) to create custom reports . We will be using SQL Server as a database so I am aware of some options: SQL Server Reporting services, Crystal Reports, Active Reports, even WindwardReports. But frankly speaking I've never used any of those except Reporting services and it's quite difficult to choose which one suits the best to

In a Maven multi-module project, how can I disable a plugin in one child?

空扰寡人 提交于 2019-11-27 07:33:23
I have a maven multi-module project (boy, I've written that opening way too many times on this site). Almost all the modules (that is, the ones that have code in them) should run the maven-site-plugin to generate reports about code coverage, etc. These have a detailed shared configuration -- which reports to run, which files to cover/exclude for certain plugins, etc. However, there are a few modules that deal with packaging -- running the assembly plugin to generate a tarball, etc. These gain nothing from running a site report -- there's no code to analyze, no tests to report on. So I have a

Crystal Reports vs ReportViewer Pros/Cons? [closed]

送分小仙女□ 提交于 2019-11-27 06:38:11
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . We have been designing our reports around Crystal Reports in VS2008 for our web application and I just discovered the Microsoft

Reporting services: Get the PDF of a generated report

﹥>﹥吖頭↗ 提交于 2019-11-27 01:41:36
问题 I've a reporting services server which has already some running reports, and I need now to generate them through a custom website(running asp.net MVC3). I need to retrieve this report as stream/byte to send it to the user. No "report viewer" or so. Last time I used reporting services was with sql 2005, and We should ad as reference an obscure asmx file. What's about now, with sql server reporting 2008 R2, .Net4 and visual studio 2010? I can't find a tutorial explaining the whole thing. (in

What's the best approach to printing/reporting from WPF? [closed]

限于喜欢 提交于 2019-11-26 23:28:47
I have an upcoming project which will have to be able to print simple reports from its data. It'll be WPF-based, and I'm wondering which way to go. I know that WPF introduces its own printing technology (based on XPS) which looks quite easy to use. However, part of me wonders whether it would just be easier to use the ReportViewer control and embed it in a Windows Forms host control, since that will give users the ability to export to a variety of formats as well as print. Has anyone had any experience with printing/reporting from WPF? Which direction would you recommend? We had this same

An error occurred during report processing. -RLDC reporting in ASP.NET MVC

倖福魔咒の 提交于 2019-11-26 21:07:25
I have this action to generate reports : public ActionResult Report(string id) { LocalReport lr = new LocalReport(); string path = Path.Combine(Server.MapPath("~/Report"), "Person.rdlc"); if (System.IO.File.Exists(path)) { lr.ReportPath = path; } else { return View("Index"); } List<Person> cm = new List<Person>(); var viewModel = new PersonIndexData(); viewModel.People= db.Person .Include(k => k.Groups) .OrderBy(k => k.Name); cm = viewModel.People.ToList(); ReportDataSource rd = new ReportDataSource("PersonDataSet", cm); lr.DataSources.Add(rd); string reportType = id; string mimeType; string

How do I periodically rebuild a reporting table that is very frequently accessed?

拜拜、爱过 提交于 2019-11-26 20:31:06
问题 It takes about 5-10 minutes to refresh a prepared reporting table. We want to refresh this table constantly (maybe once every 15 minutes or continuously). We query this reporting table very frequently (many times per minute) and I can't keep it down for any length of time. It is okay if the data is 15 minutes old. I can't drop the table and recreate it. I can't delete the table's contents and recreate it. Is there a technique I should be using, like swapping between two tables (read from one