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

Report Explorer Web Part - Edit Web Part

$
0
0

Hi,

Hi have the Report Explorer and  & Report Viewer Web parts installed and working

Now, I would like to configure the Report Explorer to open the reports in Report Viewer, but I dont see the "Connections" property.

In the Report Explorer Menu I only see the  "Report Manager URL" and "Start Path" properties. Where is the"Connections" property?


Letter format report in ssrs

$
0
0

I am trying to create a report in a letter style in SSRS 2008 R2 where it will page break on Loan number/Ins co name, then within the letter I need to pull a table listing all of the policies numbers associated for that loan number and insurance co.  I am drawing a blank as to how I can write it.  I created a list and dropped the table in it, but I keep getting an error message regarding: 

The tablix has a detail member within inner members. Detail Member can only contain static inner members.

Any help would be greatly appreciated!  

SQL Server 2008 R2 - Subscription Running Twice

$
0
0

Hi All,

We are running SQL Server 2008 R2 SP2 and I have a problem with a subscription which is randomly running twice. Usually around 20 seconds after the first run. There is only a single SQL Agent job and the history shows the agent job has only ran once but the logs (and the resulting output) shows the report is executed twice.

The subscription in question is set to run every 15 minutes, it runs a report and saves the result as a PDF to a UNC share. A third party utility then takes the PDF from a UNC share and sends it to a printer. It may duplicate and run twice 2 - 3 times per day.

I have tried staggering subscriptions just in case it was a locking issue with multiple subscriptions running at once but this did not help.

Any suggestions or ideas?

Jason


"How to get distinct values of sharepoint column using SSRS"

$
0
0
Hi,

    I have integrated sharepoint list data to SQL Server reporting services. I am using the below to query sharepoint list data using sql reporting services.

<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>{GUID of list}</DefaultValue>
         </Parameter>
         <Parameter Name="viewName">
            <DefaultValue>{GUID of listview}</DefaultValue>
         </Parameter>
         <Parameter Name="rowLimit">
            <DefaultValue>9999</DefaultValue>
         </Parameter>           
      </Parameters>
   </Method>  
<ElementPath IgnoreNamespaces="True">*</ElementPath>
</Query>

By using this query, I am getting a dataset which includes all the columns of sharepoint list. Among these columns, I wanted to display only 2 columns (i.e Region and Sales type) using chart. I have created a Region parameter but when I click preview, the drop down box is giving me all the repeatative values of region like RG1,RG1,RG1,RG2,RG2,RG2,RG2,RG3.......... I wanted to display only distinct values of Region parameter so that whenever end user select region from the parameter drop down, it will display the respective value of Sales type column.
Also when I select only RG1 parameter, it is giving me a chart including the sales type of all the Regions. (it should display me only the sales type of RG1) How can I link these 2 columns so that they will display the values respectively.
 
          I would really appreciate if anyone can help me out with this.

Thanks,
Sam.

SSRS with SharePoint 2013 Integrated and Claims

$
0
0

I have been reading a number of sources for SQL Server 2012 SSRS and I can't quite seem to get a straight answer about this.  Does SSRS support SAML Token Claims? or does it still require the C2T conversion (which effectively requires a windows account to work)?  The reason we ask is that they have other uses for SharePoint and would prefer to not go too far outside the box with the identity provider, but still do not want to stand up an externally facing AD.

ssrs 2008 r2 use parameters for sorting purposes

$
0
0

In an ssrs 2008 r2 report, I have a report where a user wants to sort a report based upon the following parameters:
   1. lastName,
   2. firstName, 
   3. studentNumber,
   4. [School Name].
The above is the default order of how the user wants to be able to sort the report.

The following is the definition and the columns that are to appear in the report:
         studentNumber varchar(15)
 ,lastName varchar(40)
 ,firstName varchar(35)
 ,[School Name]  varchar(40)
 ,[School of Assignment] CHAR(3)
 ,grade varchar(4)
 , Description varchar(50)
 ,[Beginning Date] smalldatetime
The above columns are all contained in one tablix.

The user wants to be able to sort the report by changing the parameters that I just listed
above.

Thus can you show me code and/or point me to a url that would show me how to allow the user to sort
the report in any order based upon the 4 parameters listed above?

SSRS 2005 Hangs When Accessed Through /reports

$
0
0

We have a prod server where SSRS 2005 hangs when accessing through http://server/reports. The application UI (report viewer) doesn't have a issue when running reports, but when going through Report Manager, SSRS stops working and must be restarted. Once restarted, access throughhttp://server/reports is fine for a day, but then the issue starts all over again. The issue is not seen on the test server.

We have re-installed the virtual directories with no change in behavior.  There are no errors or warnings in SSRS logs or the event viewer. The server has IE 6 and .Net 2.

Any suggestions of what the issue may be?

Switch Statement for blank values

$
0
0

Hi All;

I used the belwo switch statement 

=

Switch(
(Fields!new_totalhours.Value < 60 or isnothing(Fields!new_totalhoursValue.Value)), " Zero Hours",
(Fields!new_totalhours.Value  >60 and  Fields!new_totalhours.Value  <=299),"1 to 4 Hours",
(Fields!new_totalhours.Value  >= 300 and  Fields!new_totalhours.Value  <=539),"5 to 8 Hours",
(Fields!new_totalhours.Value  >= 540 and  Fields!new_totalhours.Value  <= 719),"9 to 11 Hours",
(Fields!new_totalhours.Value  = 720),"12 Hours",
(Fields!new_totalhours.Value  > 720),"More than 12 Hours"
)

but this displays the blank value for 

i need to add/combine  the blank and Zero Hours column together.

I need use the below statement but it didnt worked

isnothing(Fields!new_totalhoursValue.Value)

Any help much appreciated

Thanks


Pradnya07


SSRS how to get for number of months

$
0
0

Hi All;

below is my SSRS expression 

=Cdate(Format(Cdate(Mid(Fields!createdon.Value,4,2) & "/" & Mid(Fields!createdon.Value,1,2) & "/" & Mid(Fields!createdon.Value,7,4)),"MMMM yyyy"))

which gives me the month in MMMM yyyy format in Jan 2014, Feb 2014, Mar 2014... so on

i need to remove a average of a month 

i.e Months value/No of months

I do i get number of months dynamically in SSRS

Any help much appreciated

Thanks



Pradnya07

Lookupset and lookup error

$
0
0

Hi All ;

I have a table called ProgrammeOutput as below

and Programme Profile table as below 

i am using the code in Programme profile table as below

=LookupSet(Fields!new_claimmonthid.Value, Fields!new_claimmonthid.Value, Fields!new_programmeoutputid.Value, "ProgrammeOutput").length

this should return me (in programme profile table )

5 for July'14 Business Assist but it returns 26 in programme profile table

Any help much appreciated

Thanks


Pradnya07

Report Server (MSSQLSERVER) cannot load the SQLPDW extension

$
0
0

Dear All,

Please resolve the following issue "Report Server (MSSQLSERVER) cannot load the SQLPDW extension"

Event Log Name: Application
Event Log Type: error

Event ID         : 108

I really don't have any idea about reporting services, please suggest me how to clear this error. Kindly provide me detailed way to resolve this issue.

Thanks


DBA


SQL Server and Reporting server consumes more memory

$
0
0

Dear All, SQL server.exe and Reporting server consumes more memory utilization on the server, please provide me the info how to troubleshoot the issue.

Thanks


DBA

PreviewProcessingService.exe does not run in the background

$
0
0

I just installed VS2013, and SQL2014 RTM, and after that I installed SSDT BI for VS2013 released version (http://www.microsoft.com/en-us/download/details.aspx?id=42313).

But when I created a SSRS project in VS2013, and then preview the report, there pops up a command windows "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\PrivateAssemblies\PreviewProcessingService.exe", and it runs in the foreground, not like in VS2012 or VS2010, that command does not appear, and it runs as a background process. Besides that, if I close that windows, and preview the report again, it shows the error, "There was no endpoint listening at net.pipe://localhost/PreviewProcessingService5692/ReportProcessing that could accept the message. ".

Anyone has the same issue? how to work it around?


Hunter

RENDER A PARAMETER THAT HAS A LOT OF VALUES COMING FROM A QUERY IN SSRS THROUGH A URL..THIS PARAMETER HAS LIKE 300 VALUES

$
0
0
RENDER A PARAMETER THAT HAS A LOT OF VALUES COMING FROM A QUERY IN SSRS THROUGH A URL..THIS PARAMETER HAS LIKE 300 VALUES

I WANT TO CLICK VIEW REPORT IN SSRS AND RESULT SHOW SHOW IN EXCEL AFTER ENTERING MY PARAMETERS..ANY IDEA ON A CUSTOM CODE TO DO THAT..

$
0
0
I WANT TO CLICK VIEW REPORT IN SSRS AND RESULT SHOW SHOW IN EXCEL AFTER ENTERING MY PARAMETERS..ANY IDEA ON A CUSTOM CODE TO DO THAT..

sort by time value in ssrs

$
0
0

Hi All,

I have to display time value in "08:30:00 AM" format for that i ma using = Format( CDate(Fields!DefinitionTimeFrom.Value) , "hh:mm:ss tt") which is giving correct values but when i am trying to sort the data in the report it is actually following like

01:20:00 PM

02:15:00 PM

08:15:00 AM

08:20:00 AM 

but i am supposed to sort by AM and then PM like below:

08:15:00 AM

08:20:00 AM 

01:20:00 PM

02:15:00 PM

Please help me.

Thanks,

Sam

root element is missing

$
0
0

hi

whenever i am copying my report to different server ans try to execute ,it shows me error like root element is missing

 

and another problem is ,my all rdl file shows as a notepad symbol.how to get back to rdl symbol

 

thanks

Long text not wrapping on Word export

$
0
0

I have developed a report that is intended to be exported to Word and then edited further. We have found that some of the data we report on contains very long hyperlinks--upwards of 400 characters. When we export the data to Word 2010, Word is not wrapping the columns properly. Instead, it tries to fit the whole hyperlink in, which of course increases the column to be very very large, and not fit on the paper (and screw up the rest of the table format).

Are there any suggestions on how to fix this? There is no need to actually display the URLs in the report, but they are embedded in the source data and we can't remove them from that.

A couple options I've thought of, but have no idea how to do, is to a) insert a breaking space every X characters of any string that is more than say 10 characters in length, b) strip out any continuous string that begins with <a href:>, or c) force Word to not increase column width.

Thanks for any suggestions!

An expression of non-boolean type specified in a context where a condition is expected, near ','

$
0
0

I am getting the error message, "An expression of non-boolean type specified in a context where a condition is expected, near ',' " when running an ssrs 2008 r2 report.
The sql embedded in the dataset is:
IF @reportID <> 0
BEGIN
  SELECT 'Students report 1' AS selectRptName, 1 AS rptNumValue
  UNION
  SELECT 'Students report 2', 2 
  UNION
  SELECT 'Students report 3', 3
  UNION
  SELECT 'Students report 4', 4
  UNION
  SELECT 'Students report 5', 5
  ORDER BY selectRptName
END
)

The sql runs fine in managment studio when I declare @reportID.

The sql runs fine with I comment out  'IF @reportID <> 0'.

The @reportID is a parmeter value that is passed to the applicable dataset.
The @reportID can have more than one value.

Thus can you show me sql and/or tell me what I need to do to solve the issue for me?

Get value depends on one other in the same dataset

$
0
0

Hi All,
I hope you can direct me.

If I have DataSet contains (InvoiceNumberand InvoiceDate).
How can I get the InvoiceDate for smallest InvoicesNumber without change the DataSet?

Thank you,
Viewing all 10045 articles
Browse latest View live


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