reporting

asp.net - Generate Powerpoint file on the fly

可紊 提交于 2020-01-01 08:34:52
问题 I have a client of my web based application who heavily uses the data from our system for powerpoint presentations. We currently allow data to export in more traditional file types...PDF, CSV, HTML, and a few others. Powerpoint doesn't seem to be really automated. Is there a way, on the ASP.NET server side, to automate the creation and on-demand download of a powerpoint file format for a report from a system? 回答1: In this article, Steve suggests using Aspose's Slide application. He also

How to automate report delivery in SSRS

假如想象 提交于 2020-01-01 04:09:04
问题 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

Sql Server Services - Overview anyone?

狂风中的少年 提交于 2019-12-31 08:44:19
问题 In Short I am thoroughly confused by the array of SQL Server services available, and am having a hard time finding a brief primer. The Scoop I am a long time ASP.Net developer who has happily been churning out ASP.Net applications for years. These have usually been based on SQL server and a range of custom tables and views. Just recently I have had the need to do some reporting that goes a little beyond the straight forward, and so I have started to look into SQL Server Reporting Services

TFS build duration report by agent

旧城冷巷雨未停 提交于 2019-12-30 07:08:10
问题 I'm trying to build a report to show the relative efficiency of my various build agents and having trouble getting the info I need out of the tool. What I'd like to have is a simple grid with the following columns: Build Number Build Definition Build Agent Build Status Build Start Time Build Duration Which would let me do something like chart the duration of successful builds of a given build definition on agent1 against the same build definition on agent2 through agentN. How would I go about

Creating/Passing Java bean Datasource in JasperReport

喜欢而已 提交于 2019-12-30 02:12:09
问题 I am using JasperReport and ireport in my JSF application to generate reports on the fly. This is what I am trying to achieve:- My structure(read as HashMap/ArrayList) contains data that needs to be passed to the report so that the same is shown in report. My report already contains a Datasource connection using which I am fetching some value from DB and populating it in report. I am creating a subreport so that for data which needs to be passed from code I can use the subreport and embed

SOAP call with query on result (SSRS, Sharepoint)

房东的猫 提交于 2019-12-29 08:59:05
问题 I created a report in VS using a shared data source which is connected to a sharepoint list. In the report I created a dataset with a SOAP call to the data source so I get the result from the sharepoint list in a table. this is the soap call <Query> <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction> <Method Namespace="http://schemas.microsoft.com/sharepoint/soap/" Name="GetListItems"> <Parameters> <Parameter Name="listName"> <DefaultValue>{BD8D39B7-FA0B-491D

SOAP call with query on result (SSRS, Sharepoint)

≡放荡痞女 提交于 2019-12-29 08:58:11
问题 I created a report in VS using a shared data source which is connected to a sharepoint list. In the report I created a dataset with a SOAP call to the data source so I get the result from the sharepoint list in a table. this is the soap call <Query> <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction> <Method Namespace="http://schemas.microsoft.com/sharepoint/soap/" Name="GetListItems"> <Parameters> <Parameter Name="listName"> <DefaultValue>{BD8D39B7-FA0B-491D

“page-break-inside: avoid ”- does not work

China☆狼群 提交于 2019-12-29 08:46:10
问题 I am making a print css... And i want to print certain blocks as a whole, therefore I used 'page-break-inside: avoid'. But this doesn't seem to work. I have been searching desperatly to find a solution... I use Google Chrome .print-block { display: block; page-break-inside: avoid !important; margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dashed black; } This is the CSS, I am using... 回答1: Only Opera fully supports page-break-inside . References: General Chrome specific Firefox

String aggregation in SSRS 2005

好久不见. 提交于 2019-12-29 04:45:11
问题 Using BIDS 2005 to create rdl reports. I want to have the report aggregate all the strings in a data group. I was looking for something along the lines of Concatenate(Fields!CompanyName.Value, ","), or Join, or equivalent. But it would have to iterate over all the records in the scope given. I am creating a report of a user's activities in a calendar format (looking like the google's month view calendar) But if a user has multiple activities on a single day I want all of them to show up in

Rendering an RDLC report in HTML in ASP.NET MVC

元气小坏坏 提交于 2019-12-28 12:06:01
问题 I would like to render an RDLC report in HTML within an ASP.NET MVC project. I successfully made a prototype that renders an RDLC report in PDF, Excel, and TIFF image, with the help of this article. But I was surprised that HTML is not one of the default available formats in LocalReport.Render() . I came across this article, which describes a trick to enable the rendering format of HTML4.0, but I think that is only for a ReportViewer control (I could be wrong though). The question is, in MVC