reporting

ASP.NET MVC Reporting

妖精的绣舞 提交于 2019-12-03 11:40:40
问题 I am looking for reporting solution for ASP.NET MVC. I need: parameters support render to HTML export to Excel free / reasonably priced Any suggestion? 回答1: There is an ongoing discussion about people using ActiveReports in ASP.NET MVC on stack overflow. It has excel export support. 回答2: Take a look at Stimulsoft Reports.Web for MVC - the tool exactly for MVC. 回答3: Telerik Reporting supports MVC and starts from $399 for a dev license ($599 with source and free upgrades for an year). They also

Configuring code coverage report for Karma on TeamCity

烂漫一生 提交于 2019-12-03 11:14:59
问题 We are setting up TeamCity to run our jasmine tests using node and karma. The tests run fine and results are reported under the "Tests" tab in TeamCity. However we would like to report code coverage in TeamCity (and even set Build Failure Conditions on the level). I have installed the karma-coverage module npm install karma-coverage --save-dev And tried to configure it in karma.conf.js by adding preprocessors: { 'myProject/Scripts/app/**/*.js': 'coverage' }, reporters: ['progress', 'coverage'

How to automate report delivery in SSRS

喜你入骨 提交于 2019-12-03 10:19:14
I have a report in SQL Server Reporting Services (SSRS) that I'd like to schedule to run automatically as an email. I'd like the report to be attached as Excel file. According to the Microsoft overview this should be possible. Report delivery . SQL Server Reporting Services supports both on-demand (pull) and event-based (push) delivery of reports. Users can view reports in a Web-based format or in e-mail. However I can't find any information on how to actually do this. Does anyone know what tools should be used or where there is a good tutorial? Thanks! When you browse to the report in your

How to set a datasource for a BIRT report programmatically?

☆樱花仙子☆ 提交于 2019-12-03 09:20:04
问题 I have a BIRT report which connects to our test database. In the productive environment I would like to supply a datasource which is provided by the container through jndi. How would I set the datasource programmatically for the given report? ... IReportRunnable design = birtEngine.openReportDesign ( new File ( properties.getProperty ( "reportPath" ), report + ".rptdesign" ).getAbsolutePath () ); IRunAndRenderTask task = birtEngine.createRunAndRenderTask ( design ); PDFRenderOption options =

Best way to view a table with *lots* of columns?

僤鯓⒐⒋嵵緔 提交于 2019-12-03 06:42:01
At the risk of being downmodded, I want to ask what the best mechanism (best is obviously subjective for the practice violation inherent here) for viewing data from a table, using C#, with a lot of columns. By a lot, I mean something like 1000. Now before you get all click happy, or throw out responses like "why the hell would you ever have a table with that many columns" let me say that it's actually part of a design requirement. We are collecting data as fast as we can from 1000 data points. We need to store these as fast as possible, hence the flat table. The data needs to be directly

ASP.NET MVC Reporting

筅森魡賤 提交于 2019-12-03 02:04:57
I am looking for reporting solution for ASP.NET MVC. I need: parameters support render to HTML export to Excel free / reasonably priced Any suggestion? Scott Willeke There is an ongoing discussion about people using ActiveReports in ASP.NET MVC on stack overflow . It has excel export support. Take a look at Stimulsoft Reports.Web for MVC - the tool exactly for MVC. Telerik Reporting supports MVC and starts from $399 for a dev license ($599 with source and free upgrades for an year). They also provide a working project on how to use their tool in MVC. I hope this helps... The easiest one we

php reporting tools [closed]

偶尔善良 提交于 2019-12-03 01:10:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have been developing with PHP for over ten years (since PHP version 3) and have used many different programming languages. But I have never seen any PHP reporting tools. I am looking for something similar to Jasper Reports Crystal Reports Fast Report Quick Report Report Builder I am not looking for: FPDF

What is your reporting tool of choice? [closed]

依然范特西╮ 提交于 2019-12-03 00:57:09
问题 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 . Locked . This question and its answers are locked because the question is off-topic but has historical significance. It is not

Report Builder 3.0 SWITCH expression DEFAULT/ELSE

二次信任 提交于 2019-12-02 20:03:32
I am trying to display a different logo based on the users franchise number. Parameter = UserFranNr If the value <> 99 and <> 87, then the embedded image to display is ID0. (Embedded image names are strings.) This works with nested IIFs but seems to be the right time/place to use SWITCH . (There is a strong possibility that more franchises will use their own logo in future.) =Switch ( Parameters!UserFranNr.Value = "99","ID99", Parameters!UserFranNr.Value = "87","ID87", "ID0" ) I have not found any documentation that explains how to implement a default value using SWITCH . Is this even possible

Best Relational DataBase Representation Of Time Bound Hierarchies

浪尽此生 提交于 2019-12-02 19:49:31
What in everyone's opinion is the best representation for a time-bound hierarchy in SQL? What I mean by this is: - On any given date you have a normal tree hierarchy - This hierarchy can change from day to date - Each child still only has one parent on any given date Day 1... Business | |-Joe | |-Happy | |-Sneezy | |-Doc(*) | |-Moe |-Bashfull |-Sleepy Day 2... Business | |-Joe | |-Happy | |-Sneezy | |-Moe |-Doc(*) |-Bashfull |-Sleepy At any time, a child can join the hierarchy for the first time, or leave the hierarchy completely. (For example, new employees, and retired employees.) The main