ssrs-2008

AX SSRS Report Parameter is shown but not useable in the report

 ̄綄美尐妖づ 提交于 2019-12-11 11:55:54
问题 I want to add a parameter to a SSRS report which uses a report data provider. I searched the LedgerTrialBalanceContract class in AOT and added in the classDeclaration an attribute "CurrencyCode accountingCurrency;". After this step, i added a method "parmAccountCurrency" which look like this: [ DataMemberAttribute(identifierStr(accountingCurrency)) ] public CurrencyCode parmAccountCurrency(CurrencyCode _accountingCurrency = accountingCurrency) { //accountingCurrency = _accountingCurrency;

How to use stored proc with null parameters in SSRS?

无人久伴 提交于 2019-12-11 11:55:34
问题 i have a report that uses a stored procedure that is using optional parameters.I have 4 optional parameter,so in the report's preview tab ,i can 4 textboxes for the parameters.But when i dont write anything in the textboxes,i get an error..What can i do to execute my proc with null parameters is SSRS ? 回答1: you can declare parameters to procedure as follows: @Your_parameter VARCHAR(50) = NULL and use in the where as: where (@Your_parameter IS NULL OR columnname = @Your_parameter ) 回答2: Note

SSRS wont publish report but it returns successful as if it did

时光总嘲笑我的痴心妄想 提交于 2019-12-11 10:45:29
问题 public static void ListFolders() { HomeFolderListing = new List<string>(); ReportingServiceSoapClient rs = new ReportingServiceSoapClient(); rs.ClientCredentials.Windows.AllowedImpersonationLevel = TokenImpersonationLevel.Impersonation; CatalogItem[] HomeFolders = null; string reportPath = "/"; rs.ListChildren(reportPath, true, out HomeFolders); foreach (var homeF in HomeFolders) { if (homeF.Name.ToString().ToLower().Contains("base")) { if (homeF.Path.ToString().ToLower().Contains("/data

Separate parameters for Date and Time

我的未来我决定 提交于 2019-12-11 10:17:30
问题 I want to use one parameter for date and another one for time in my reports as shown below. Start Time [16/01/2012][12.00 am] Can anyone help me regarding that? 回答1: Sure it is a multiple step process: Set up a variable of TEXT as 'DATE' as the variable value and prompt Set it's 'Default Values' in the left pane to be '1/16/2012' Set up a variable of TEXT as 'TIME' as the variable value and prompt Set it's 'Default Values' in the left pane to be '00:00' Set up a dataset, 'AvailableDateTime'

SSRS Report Manager set default zoom level

两盒软妹~` 提交于 2019-12-11 09:58:06
问题 I have deployed around 40 report parts to my reporting server which are all working correctly. The problem is my zoom is default 100 for all of them, I want a number of them to default to 75. I have tried creating a portal with links to all report parts and using the &rc:Zoom=75 on the end of the URL for the link but it still defaults to 100. Can anyone suggest how I can achieve what I want? 回答1: Instead of going to : http://mysqlservername/Reports/ and getting the full URL from here (plus

SSRS Show Textbox on last page separately

天大地大妈咪最大 提交于 2019-12-11 08:22:06
问题 I need to display a Textbox in the body of the report, but it has to be on a separate last page. It is actually a Word file that needs to be shown in each report, but seeing as how the only way to accomplish this is to put the file to the Report Server and then access it with a link, I decided to copy the contents of the file to a Textbox. This and this question on SE are similar, however it is not exactly what I need. 回答1: You can achieve this by adding items with appropriate page breaks to

Show time tag in SSRS Parameter

℡╲_俬逩灬. 提交于 2019-12-11 08:19:02
问题 I have an SSRS report with two parameters: StartTime and EndTime. I have default values on the parameters to be set as the current date at 12:00am and the previous day at 12:00am. However, since 12am is the default time on SSRS, it will not show in the parameter selection. What you see is, for example, '9/29/2011'. If there were to be a time other than 12:00am, you would see '9/29/2011 12:45:00.' Is it possible to get the report parameters to populate at 12am and still show the time? The

Is it possible with SSRS 2008 to export a .pdf that has a dynamic name based on today's date?

一笑奈何 提交于 2019-12-11 06:57:18
问题 I want to generate a report each day and then export that to a .pdf on a network drive. However, I don't want to overwrite the current data. Instead, I'd like something like this to happen each day: ExportedReport_1242012.pdf for today ExportedReport_1252012.pdf for tomorrow etc. Is this possible? 回答1: Yes, it is. You could set this report up as a subscription if @Timestamp in the filename is OK, or a data driven subscription if the date formats are critical. See this thread for more info:

Change Link Target property for Jump to URL action SSRS 2008 R2 (rc:LinkTarget)

你离开我真会死。 提交于 2019-12-11 05:25:11
问题 I'm using SSRS208R2 to create reports. I display these reports using a ReportViewer control in my web application. some of the fields in my table are tags that user javascript:void window.open... to opent a link in a new window. I use Jump to URL action for my placeholders to achieve that. The Problem: My report is displayed in a separate domain. ReportViewer Control renders the tags with target='_top' property. IE will not let any href='javascript:void alert....' action to run from a

Upgrading Reporting Services Report from VS2008 to VS2010

跟風遠走 提交于 2019-12-11 05:15:34
问题 I am trying to convert a reporting services file from VS2008 to VS2010. It is filled and saved without using the ReportViewer. The following steps causes the error. Open the project in VS2010. All works fine. Open the .rdlc file. It upgrades. Run the application again. It fails. I downloaded the sample from http://www.gotreportviewer.com/objectdatasources/index.html and am using the method from http://knol.google.com/k/microsoft-sql-server-reporting-services-ssrs#Data_Sources to save the info