rdl

How can I merge rows (of a particular column) having the same value in SQL Server Reports RDL?

笑着哭i 提交于 2019-12-10 11:34:07
问题 I'm new to working with SQL Server 2005 Reporting Servives using RDLs in BIDS. I need to modify an existing report so that I can merge cells in adjacent rows which would have the same value for that particular column. Ex: consider this is the table returned from the stored procedure used by the reports RDL. _________________________________________________ Id SubCategory Field1 Field2 Total _________________________________________________ 1 a Bob US 17 1 b John UK 17 2 a Mary AUS 12 3 d Ram

Hidding toolbar for reports created using SSRS 2008 in CRM 2011

[亡魂溺海] 提交于 2019-12-10 11:28:29
问题 I have created report in SSRS 2008 and have attached them to the dashboard. The report is displaying fine, except for the fact that about 15-20 % of the space gets occupied by SSRS menu toolbar which has options for printing/zooming etc. Is there a way for me to minimize that tool bar? I also have a parameter bar that I can hide. But it doesn't stay hidden by default. Is there a way for me to temporarily hide the parameter bar when the dashboard loads? while googling i got this link but when

The Report Viewer Web Control requires a System.Web.UI.ScriptManager on the web form

三世轮回 提交于 2019-12-10 02:02:22
问题 I have tried to call a .rdl report created in SSRS to be called in an aspx page; but I got the following error: The Report Viewer Web Control requires a System.Web.UI.ScriptManager on the web form My Code is as follows, protected void Page_Load(object sender, EventArgs e) { //string query = Session["ClosedBugsResult1"].ToString(); if(!IsPostBack) ReportViewer1.ProcessingMode = ProcessingMode.Remote; ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://localhost/reportserver");

Is there a way to publish rdl reports programmatically with C#?

淺唱寂寞╮ 提交于 2019-12-09 21:35:31
问题 I have a solution file in BI that contains 10 report projects. I publish these projects manually with every change. I want to know that is there a solution to deploy these projects on report server programmatically? 回答1: Yes. Use the API: ReportOperationsCollection class This is what VS uses 回答2: We use TeamBuild that comes with M$ TFS. Works like a charm, except we had to write a custom build task to transform the data sources. 来源: https://stackoverflow.com/questions/2323593/is-there-a-way

Change RDL version for RDLC Reports in Visual Studio 2017

可紊 提交于 2019-12-09 14:40:42
问题 I have a project in Visual Studio 2017 with .NET Framework 4. For reports I use the RDLC designer, but I have a problem. The designer creates the reports using RDL 2016 and I need you to use the 2010 definition. Can I configure this? I need it since the program has to be compatible with Windows XP and there is no ReportViewer Runtime that supports RDL 2016 for Windows XP. 回答1: I had the same problem, but if a did a new report it was all right, the new report was created and saved with the old

Records in colors in RDL

无人久伴 提交于 2019-12-08 11:58:49
问题 I facing some problem while creating RDL report. I want on certain condition some records to be shown in red colors in Report.as well as in execl when i export that report in excel. Can any one plz help me to do this..? Iam using Reporting server 2005. 回答1: To do this you'll generally use a conditional expression in the "Color" property (or the "BackgroundColor" property) of the table cell(s) you want to change. To change the text colour of a cell based on the value of the field "Price", for

Datasource for RDL reports with ReportViewer

折月煮酒 提交于 2019-12-08 05:11:31
问题 I have some RDL reports created with SQL Server BI Development Studio and now I need to render them using the ASP.NET Report Viewer. Even though my RDLs contain references to the SQL server and the SELECT query, it keeps saying I need to specify a datasource for the report. Is there a way to make the datasource from the RDL be used or do I have to pass a datasource to the report viewer via C# code? Thank you. 回答1: Did you verify the DataSourceReference element in your RDL? It needs the path

Process rdl/rdlc report files without SSRS?

烈酒焚心 提交于 2019-12-07 13:46:51
问题 Is there any way to render and export an rdl file within a batch process without using SSRS? I don't want the overhead of SSRS (IIS + database) and instead want to handle this within my own batch/scheduling service. Thanks 回答1: You can conceivably use the Report Viewer control in a server process written in managed code. You pass the control a data source (which can be a DataTable memory object), and it will return a byte stream that you can direct into a file. The control has a UI, but that

ActiveReports 9实战教程(2): 准备数据源(设计时、运行时)

£可爱£侵袭症+ 提交于 2019-12-06 18:18:01
在上讲中《 ActiveReports 9实战教程(1): 手把手搭建环境Visual Studio 2013 社区版 》,我们已经结合Visual Studio 2013搭建好了 ActiveReports 9的开发环境,并完成了一个Hello World的RDL报表。 在本文,我们通过配置数据源进行报表实战,做过报表开发的报表达人知道,报表中的数据源分设计时数据源和运行时数据源。 如何理解呢? 这2类数据源,表结构是一样的,用途不一样: 1 设计时数据源,用于研发内部、报表小组进行配置、测试报表用。 2 运行时数据源,用于系统割接后在局方现场运行报表系统,如修改链接数据库的字符串。 从上面2点可看出,设计时数据源的运行比较广:配置报表、测试、运行报表。而运行时数据库切换数据库链接字符串即可无缝实现数据源在用户现场部署,相对比较容易。 下面用NWind_CHS.mdb数据源进行实战(AR9安装后,自带的数据源‪C:\Users\rogerwang\Documents\ComponentOne Samples\ActiveReports 9\Data\NWIND.mdb)。 设计时数据源 通过“ 视图 -- 其他窗口 -- 报表资源管理器 V9” ,然后基于上讲的RdlReport1.rdlx文件,双击rdlx文件。 右键, 添加数据源 在新创建的数据源DataSource1

Datasource for RDL reports with ReportViewer

若如初见. 提交于 2019-12-06 15:28:43
I have some RDL reports created with SQL Server BI Development Studio and now I need to render them using the ASP.NET Report Viewer. Even though my RDLs contain references to the SQL server and the SELECT query, it keeps saying I need to specify a datasource for the report. Is there a way to make the datasource from the RDL be used or do I have to pass a datasource to the report viewer via C# code? Thank you. Paul Patterson Did you verify the DataSourceReference element in your RDL? It needs the path to the reporting server. The DataSourceReference element can contain a full folder path (for