Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

Urgent Help Pls::RDLC Data Error in MVC Report Viewer

$
0
0

HI All.

i have created a .rdlc file in MVC application.

i have used Matrix in report and also i have bar charts.

issue is when i view the report in my application--all the months data and all the years data is getting summed up..

ex:

it should display like

jan  feb  mar

1     2      3

but it is coming like

Mar

6

i have group by as Month for Month columns and Year for Year columns, how to fix this error.


Formatting

$
0
0

I have a formatting question regarding the expression below

The lookup set yields multiple Intervention Types with multiple comment reasons

The results currently displays as follows:

PA-Call to PMD

No ans. Left message.PA–Called Insurance Company. PA spoke with Medical Director

Is it possible to group the results?

PA-Call to PMD

No ans. Left message

PA–Called Insurance Company.

PA spoke with Medical Director

=Join(LookupSet(Fields!Account_Number.Value,Fields!Account_Number.Value, Fields!Intervention_Type.Value, "Interventions") , vbcrlf & Join(Lookupset(Fields!Account_Number.Value,Fields!Account_Number.Value,Fields!Intervention_Comment.Value, "Interventions"), vbcrlf))

Thank you in advance

Field value not passing to a parameter in drill through sub report

$
0
0

Hi,

I have two reports 'Product Details' and 'Sales by Product'

When i click on 'Product ID' field in 'Product Details' report, It has to drill through to 'Sales by Product' which has a parameter 'Product ID' in it. 

I have written the following javascript

="javascript:void(window.open('http://servername/Rportserver/Pages/Report.aspx?ItemPath=%2fTestDrillThru%2fSales+By+Product&rs:Command=Render&ChildProductID="& Fields!ProductID.Value &"','_blank',',resizable=1,width=1600,height=800,left=50'))"

When i drill through, field value is not passing to 'child product id' in sales by product. I have to give the value again in child report.

Please let me know what am i missing here?

Add subreport to main Report using Report Builder

$
0
0

Hi,

I just created a report builder. I have a main report and i wanted to create a sub report. my question, why i cant or i cant view the path or the folder of my  .rdl file to be use as my sub report. Any idea please. thank you.

see attached sample screen shot.

Re: Alternative check box column background colour changes in VISUAL STUDIO/SSRS 2008 or ssrs 2008r2

$
0
0

Hi,

I am working on SSRS 2008, I need to change background color of alternative columns. We can change simply if it is a textbox column but my columns all are in checkbox (Image result for checkbox symbol) based one expressions and I didn't see any background color option In properties for this check box column(please see the images below), please let me know is there any way to change background color  for alternative columns? Kindly find the below images.

I need like this:

Thanks.


bihelp




Owner of Subscription Can't Update Email's

$
0
0

I have a user who is the owner of and creator of several subscriptions.

When this user goes in to update the email addresses of the recipients, the list of recipients is grayed out, but yet they are able to update everything else in the subscription just fine, including schedules, parameters, etc.

I can't see anything that stands out that would cause this behavior.

Has anyone else seen anything similar?

Thanks in advance!


A. M. Robinson


How do you print from Microsoft Edge?

$
0
0
I have followed all the instructions that I have found on printing from Edge and still nothing is printing? Why can we just have a printer Icon to click?

SSRS 2015 Bar chart labels displaying over bar and not on top

$
0
0

Hi

Some labels  such as 33314 are displaying over the columns. I need all labels to display at the top. How can I fix this without changing the size of the chart?

Displaying image.png


USE a SQL Alias when configuring SSRS wizard.

$
0
0

I am using SSRS 2008 R2.

on my SSRS machine. I went and created the SQL Alias (both for 32 bit and the other one)

Then I ran the SSRS configuration wizard and tried to configure teh SSRS service to create a report server database by using a SQL Alias.

it connects to the DB fine but at the last step it gives an error saying no such host.

Has anyone been able to configure SSRS Service when they used an alias for the sql server?


val it: unit=()

Do unused fields in SSRS reports hurt performance?

$
0
0

Hi all,

I have several SSRS reports whose primary datasets use stored procedures as the query type. 

When you create a dataset and choose a stored procedure for your query, SSRS automatically creates fields using all the columns that are returned by your stored procedure.

However, in most cases, I only want to use a subset of those automatically created fields in my report. Would it be worth my time to go through my reports and remove the unnecessary fields from the dataset? That is, would I get any kind of performance boost? Does the presence of the unnecessary fields hurt performance?

Thanks for your thoughts.

Dylan

2014 SSRS and Windows 10

$
0
0
I am unable to get the rsclientprint dll to load in Windows 10 using IE 11 (not Edge).  Has anyone been able to get the dll installed on Windows 10.  I have no problem with SSRS from SQL 2008R2 but want to upgrade to SSRS and SQL 2014 and need it to work with W 10.

Report Viewer Next Page is not Displaying

$
0
0

HI All.

i have created .RDLC file/report in MVC, but in Report Viewer when i try to display next page, i am unable to see the next page. it is just displaying the first page data and charts only.

can someone help me on this.Thanks

how to display fixed number of rows in page wise using list

$
0
0

Hi,

i want to break 2 by 2 rows in report

ceiling(rownumber(nothing)/2)

i used this expression in row group. 

http://www.sqlchick.com/entries/2010/9/11/displaying-fixed-number-of-rows-per-ssrs-report-page.html

but i want to use this expression in matrix and that matirx is with in list . so i  am getting error . 

how to use rownumber in list.

here i used list to break the page wise id


GVRSPK VENI

Passing report parameters to a query using a WCF data source

$
0
0

Hello everyone,

 

I am attempting to pass report parameters to my query. My report's data source is a WCF web service. I can run normal queries fine, but I have found that without the know-how to pass parameters to my query I am limited with my capabilities.

Assume a string parameter named "Name" with a specified default value of "Jmachol90", how would I pass that into the following query at the designated place:

 

 

<Query>

          <Method Namespace="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09" Name="SecurityPrincipalsGetRequest">

          <Parameters>

          <Parameter Name="Criteria" Type="XML">

<DefaultValue>

<Identifiers>

<Identifier>

<Name>[PASS PARAMETER IN HERE]</Name>

</Identifier>

</Identifiers>

<All>true</All>

 <ResultType>Details</ResultType>

 <Type>UserAccount</Type>

<FunctionPrivilege>Details</FunctionPrivilege>

</DefaultValue>

          </Parameter>

          </Parameters>

          </Method>

          <SoapAction>

          http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09/IService/SecurityPrincipalsGet

          </SoapAction>

          <ElementPath IgnoreNamespaces="True">

          SecurityPrincipalsGetResponse{}/Principals{}/Users{}/User

          {

           DisplayName

          }

          </ElementPath>

          </Query>

 

If you have any questions please ask.

 

Thanks,

 

Josh

 

Audit IAuthorizationExtension::CheckAccess failures

$
0
0

Is there any way to get more information for when IAuthorizationExtension::CheckAccess fails to grant access to a report item for the current user? Specifically, it would be helpful to know:

1. URL of attempted report

2. IP address of user agent

3. Identity of current user

4. Date/Time of the failed attempt

ssrs2014


Multiple Select Parameter Only Selecting First Value

$
0
0

I have a SSRS report with a Parameter that lets you choose the name of an employee. The report lists their Name, Number, User ID etc.
When you select a single employee, the filter on the Dataset works perfectly. However once you select two or more employee names, it only returns the first result. 

The parameter, Field, and Filter are text. 
The Filter is EmployeeName IN @EmployeeName

Any help is appreciated. 

SSRS 2012 BIGINT

$
0
0

I have a SQL stored procedure that has a parameter of type BIGINT.

What are my options as a parameter in a SSRS 2012 report?

INTEGER

STRING

FLOAT

Thanks in advance

Report, Change The Number Of Rows Per Page

$
0
0

I am fairly new to reporting services and recently created a simple tabular report.  There is one table which queries the database and I would like to change the table so there are more than 25 rows of data per page.  How do I do this? 

Also it would be advantageous to know how to set the report to only create a new page for every different item in a column.  For eg if I have various data for each date, I would like to only create a new page when the date changes so that all data for a specific date is on one page etc etc.

Many Thanks

Need help connecting to sql server using Report Builder 3.0

$
0
0

Retired hobby coder needing help yet again.  I graduated college with a degree in economics Summa Cum Laude, but I gotta tell you, the Microsoft "family" of product and their usage totally bafflesme.

I purchase SQL Server 2014 and use Sequel Server Management Studio to access it.  Wanting to learn reporting I downloaded Microsoft Report Builder 3.0 and find myself unable to figure out how to connect to the SQL Server.

I would like to connect to this database.

Whenever I run the connection wizard I can't find even a sniff of the server in the above.

I'm sure it's all somewhere in the concisely written, ever logical and clear documentation...but I'm unable to find it.  Can someone please point me in the correct direction?

Regards,

Minuend

JIT Debugging Error when Reporting Configuration Manager is opened.

$
0
0

Hi All,

We have installed SQL Server 2005 with reporting services.

When tried to open getting errors as below: Please suggest on how to avoid such errors

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
ReportServicesConfigUI.WMIProvider.WMIProviderException: A WMI error has occurred and no additional error information is available. ---> System.Runtime.InteropServices.COMException (0x8000000A)
  at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
  at System.Management.ManagementObject.InvokeMethod(String methodName, ManagementBaseObject inParameters, InvokeMethodOptions options)
  at ReportServicesConfigUI.WMIProvider.RSInstance.RefreshServerStatus()
  --- End of inner exception stack trace ---
  at ReportServicesConfigUI.WMIProvider.RSInstance.RefreshServerStatus()
  at ReportServicesConfigUI.WMIProvider.RSInstance.get_DelayLoadConfiguration()
  at ReportServicesConfigUI.WMIProvider.RSInstance.get_Item(ConfigurationItemNames itemName)
  at ReportServicesConfigUI.WMIProvider.RSInstance.GetStatus(ConfigurationItemNames itemName)
  at ReportServicesConfigUI.ConfigurationManager.ResetStepStatus()
  at ReportServicesConfigUI.ConfigurationManager.ChangeMachine()
  at ReportServicesConfigUI.ConfigurationManager.LaunchDialog()
  at ReportServicesConfigUI.ConfigurationManager.OnActivated(EventArgs e)
  at System.Windows.Forms.Form.set_Active(Boolean value)
  at System.Windows.Forms.Form.WmActivate(Message& m)
  at System.Windows.Forms.Form.WndProc(Message& m)
  at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5485 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
RSConfigTool
   Assembly Version: 9.0.242.0
   Win32 Version: 9.00.5000.00
CodeBase: file:///D:/Program%20Files/Microsoft%20SQL%20Server%20(x86)/90/Tools/Binn/RSConfigTool.exe
----------------------------------------
System.Windows.Forms
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5483 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5467 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5483 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Xml
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5485 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Management
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5483 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Management/2.0.0.0__b03f5f7f11d50a3a/System.Management.dll
----------------------------------------
System.ServiceProcess
   Assembly Version: 2.0.0.0
   Win32 Version: 2.0.50727.5483 (Win7SP1GDR.050727-5400)
   CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.ServiceProcess/2.0.0.0__b03f5f7f11d50a3a/System.ServiceProcess.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
   <system.windows.forms jitDebugging="true" />

Please let us know to provide any further details. Thank You


Grateful to your time and support. Regards, Shiva

Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>