reporting-services

Fetch XML report aggregate undocumented limit

99封情书 提交于 2019-12-06 09:33:05
I've been struggling with this one fetchxml report for Dynamics CRM online. The report is using aggregate to detect duplications based on certain fields. So, even though it is an aggregate report, the data set will return a lot of rows. Then I found out that the number of rows returned for aggregate fetchxml is limited to 5000. I understand that normal fetchxml report will return records more than 5000 but for aggregate report, this doesn't seem to be the case. In the resultset, the 'morerecords' attribute shows as '0' too. Is there any workaround for this (except to use normal fetchxml to get

Deploying from BIDS to SSRS - Parameters Not Getting Updated

拟墨画扇 提交于 2019-12-06 09:32:28
I'm noticing some strange behaviors when deploying reports from BIDS to SSRS. I have a parameter that has default values, but those default values don't seem to be getting propagated to the Report Server (they are stored in Parameters field in the Catalog table). Yet when I add new parameters I could see the field is changing. It's almost like the deployment tool is ignoring certain parameters. Any thoughts? If this helps, my RDL looks like this: <ReportParameter Name="INCLUDEDFIRMS"> <DataType>Integer</DataType> <DefaultValue> <Values> <Value>1</Value> </Values> </DefaultValue> <Prompt>Monkey

How to show data in column in SSRS

心已入冬 提交于 2019-12-06 09:13:37
问题 I'm using SSRS for my reporting, my reporting solution is in Visual Studio 2008 Business Intelligence Development Studio. I have a report in which the data should be displayed in this format. I have added a Column Group in my table which is having the values of Customer Name and details, the data is coming fine in the vertical format i.e column after column. My Issue : There should be only three columns in each row, after three records the next row should begin and again not more than three

SSRS IIF Date evaluation

这一生的挚爱 提交于 2019-12-06 08:25:57
问题 I have the following code =IIf(Fields!Freeze.Value, Fields!effectivedate.Value, IIF(Month(Fields!effectivedate.Value) <> Month(Now()), Format(Now(), “MM/dd/yyyy”) , Fields!effectivedate.Value)) A. In the first IIF statement I check to see if the Fields!Freeze.Value is true, if its true then It displays Fields!effectivedate.Value (IIf(Fields!Freeze.Value, Fields!effectivedate.Value) B. In the second IIF statemenet I check if the Fields!effectivedate.Value is the current month, If it is the

How to hide parameter based on another parameter value in SSRS

痴心易碎 提交于 2019-12-06 08:23:55
Hi I have 2 parameters param1 and param2. param1 has values true and false.my requirement is if i select true in param1 then param2 should be hidden and if i select false in param1 then param2 should be visible. can this be achieved in SSRS? sajad As per Nathan's comment i am adding Amar's comment here as answer/partial answer Unfortunately, you cannot change a parameter's visibility during run time. Alternatively, you can control the second parameter's values based on the selected value of the first parameter. Check this post - Hide parameter (dropdown control from the toolbar) in SSRS based

Getting SSRS Matrix Row Total for a Particular Column Value

妖精的绣舞 提交于 2019-12-06 08:22:44
问题 In Microsoft Sql Server Reporting Services 2008 R2 Matrix , I'd like to add a column that shows the percentage of one data item divided by the total count of that row's data items. Total 's expression is =Sum(Fields!Count.Value) . How would I access the row's sum of Success from Success Percent so that I can do something like =SUM(Fields!Count.Value WHERE Fields!Name.Value = "Success")/SUM(Total) ? Adv.Name Success Failed Total Success Percent A 2 8 10 20% B 10 0 10 100% C 8 2 10 80% --------

SSRS using Xml datasource [WCF], its possible, but is it advisable?

允我心安 提交于 2019-12-06 08:12:36
问题 We have a requirement to use WCF as a data source in our reports. [Server Mode] Dot Net 4.0/ SSRS 2008 R2/ ASP.Net 4.0 The idea behind this is to apply common business rules throughout the application from Reports to standard application grids. Essentially it would work along the lines of Normally its as follows [RDL - SQL Sever Data Provider - DB] but what we require is [RDL - XML/Custom Dataprovider - WCF Method - Business Layer - - DB] Our main app would use the WCF layer also. Actually

Why input[type=text] is not working in IE

眉间皱痕 提交于 2019-12-06 08:09:58
I have some style like this: <style type="text/css"> input[type=text]{ width:300px; } </style> the above code works in chrome and firefox. Why not in IE? I am using this code in Reporting services at the end of Reports.aspx file. It works fine in IE8, assuming the page is loading in IE7 or IE8 standards mode (not quirks) Edit You've said you're using IE8. In which case, use the developer tools (F12), locate your text box, and check what styles are being applied. Edit 2 Don't know which version of reporting services you're using. Just went to a 2000 instance, and the report manager is serving

Table WorkItemsLatest (TFS 2010) missing in TFS 2015 (Collection Database)

纵然是瞬间 提交于 2019-12-06 07:02:35
We recently migrated from TFS 2010 to TFS 2015 and came across that some of the reporting services are not working anymore. One of the view we created was pulling various information (WorkItem State, Title,Fld10118) from "WorkItemsLatest" table, however, checking the collection database of TFS 2015 indicates that there is no more "WorkItemsLatest" table in TFS 2015 collection database. I would appreciate if you can advise how to get above mentioned fields in TFS 2015 collection database. I understand that the operational databases are not supported by Microsoft and encourages to retrieve data

Export separate pdfs from SSRS generated report

自闭症网瘾萝莉.ら 提交于 2019-12-06 06:44:23
Is it possible for SSRS to name and separate pdf exported files based on parameter groupings? Right now, when I run the report, it only gives me one pdf with 100+ pages. However, at every page-break, I'd like SSRS to create a new pdf file, and it'd be a real time-saver if it would also insert the pdf's filename based on the grouping selection. Is this possible in SSRS, or do i need to use SSIS for this functionality? I'm using 'Visual Studio 2010' for SSRS, and 'SQL Server 2012' for integration services You would be able to do all of what you want in SSRS - if you have the Enterprise edition