Quantcast
Channel: SQL Server Reporting Services
Viewing all 1418 articles
Browse latest View live

Give Access to All Users in the Company for SSRS Report

$
0
0

Hi. I have an SSRS report that I want all the users to be able to view. Can someone point me in the right direction on how to add all the users at one time instead of adding each user one by one? Even better would be to let anyone with a network account with the company to be able to view the report.

Thanks.


data missing when exporting to word

$
0
0

Hi

I have a rdlc report containing a tablix with a rowgroup and a columngroup.

When I export to Word, the worddocument only shows the first 4 columngroupmembers and the first part of the 5th columngroupmember, but not the remaining columngroupmembers.

I have tried to add pagebreak after each columngroupmember, but that doesn't help.

RDLC(SSRS) How to show Group Total at footer section on each pages ?

$
0
0

How to use expression in "Group Total" at footer section on  each pages

Thank you for best solution ^_^

I 'm From Thailand.

Welcome to Thailand

Reports

$
0
0

How can I generate reports using report view? and what kind of reports can be generated?

ReportViewer page - Debugging "The request failed with HTTP status 401: Unauthorized."

$
0
0

Hello.. 

I created a VB.NET page to display a SSRS report on a separate webpage and hopefully, keep the SQL server from being viewable from the iNet.  URL Variables will be passed to the report ultimately.

I entered the credential and server information within the web.config file and have the code calling this from here.  Also have a "credentials.vb" class within the App_Code folder.

When I step through the debugging, I keep getting a 401, unauthorized error on the "RV.ServerReport.SetParameters(New ReportParameter() {param1})" line.  Yet, I can open web browsers, visit the server, browse to the reports and bring them up.  I configured the SSRS server to allow Everyone, Browser permissions.

The account credentials being used are a domain administrator account for testing purposes.

Any assistance would be greatly appreciated.  Thanks..

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="SSRSTest.aspx.vb" Inherits="SSRSTest" %><%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"><title>Untitled Page</title></head><body><form id="form1" runat="server"><div></div><asp:scriptmanager ID="Scriptmanager1" runat="server"></asp:scriptmanager><rsweb:ReportViewer ID="RV" runat="server" Font-Names="Verdana" 
Font-Size="8pt" ProcessingMode="Remote" Width="840px" Height="800px" 
ShowParameterPrompts="True" EnableViewState="True"></rsweb:ReportViewer></form></body></html>
Imports Microsoft.Reporting.WebForms

Partial Class SSRSTest
    Inherits System.Web.UI.Page

    Private Report As String = "/Taxbills/Taxbill_1stHalf_parcel"

    Dim TaxYear As Integer
    Dim EmailAddress As String

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        TaxYear = Request.QueryString("Year")
        EmailAddress = Request.QueryString("Email")

        If TaxYear = 0 Then
            TaxYear = "2015"
        End If

        If EmailAddress Is Nothing Then
            EmailAddress = "me@home.com"
        End If

        If Not IsPostBack Then
            InitializeReportCredentials()
        End If
    End Sub

    Private Sub InitializeReportCredentials()
        Dim server As String = ConfigurationManager.AppSettings("ReportServer")
        Dim reportpath As String = ConfigurationManager.AppSettings("ReportsFolder")
        Dim username As String = ConfigurationManager.AppSettings("Username")
        Dim password As String = ConfigurationManager.AppSettings("Password")

        Dim param1 As New ReportParameter("Year", TaxYear)
        Dim param2 As New ReportParameter("emailaddy", EmailAddress.ToString)

        RV.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
        RV.ServerReport.ReportServerUrl = New System.Uri(server)
        RV.ServerReport.ReportPath = String.Concat(reportpath, Report)
        RV.ServerReport.ReportServerCredentials = New ReportCredentials(username, password, "")

        RV.ServerReport.SetParameters(New ReportParameter() {param1})
        RV.ServerReport.SetParameters(New ReportParameter() {param2})

        'RV.ServerReport.SetParameters(param1)
        'RV.ServerReport.SetParameters(param2)

        RV.ServerReport.Refresh()

    End Sub

End Class



DateTime Parameter for Report (RDL file) using Service reportexecution2005.asmx in C#

$
0
0


I use http://SERVER/reportserver/reportexecution2005.asmx?wsdl in ASP.NET website

I use RDL file with Report Parameter

<ReportParameter Name="dtDateFrom">       <DataType>DateTime</DataType>       <Prompt>dt Fecha Hasta</Prompt>     </ReportParameter>

RDL file: <Language>es-ES</Language>

reportExecutionService.SetExecutionParameters(parametersArray, "en-US");

Server has  format "dd/MM/yyyy"

I get error when I add ParameterValue in format dd/MM/yyyy

 

Only working with formatyyyy-MM-dd ?

Any suggestions?

       

privatestaticstring GetDateTimeTypeValueWithFormatSSRS(DateTime dt)

        {

//Internet Explorer: Tools->Internet Options-> Languages...

//Control Panel: Regional and language options->Standards and formats, Location.

// En RDL file:   <Language>es-ES</Language>

           

return dt.ToString("yyyy-MM-dd");

        }


// Internet Explorer: Tools->Internet Options-> Languages...
// Control Panel: Regional and language options->Standards and formats, Location.

Printer icon missing

$
0
0

One of our clients has IE 11 on their PCs and do not get the printer icon when printing an SSRS report if they are not running in compatibility mode.  At our site, we have the same reports (we are a developer of their website) and using IE 11 also but we DO see the printer icon.  The only difference is they are running Server 2008R2 (IIS 7.5) and we are running 2012R2 on our server.  What can we do to get the printer icon to show?

p.s. Their browser settings are identical to ours and we use a URL to call up the report.

display grouped data in certain order

$
0
0

I have a report that displays grouped data. The categories are only displayed if there's data. How do you display the data in a certain order like below.

category admin
Bill
Sally
category upper mgt
Fred
Wilson
category users
Henry
Trent
category general
Greg
Karen
Molly


web form app accessing ssrs 2012 reports

$
0
0

In a new C# 2010 web form application, I am planning to use a reportviewer control for users to determine what ssrs 2012 reports they want to execute.

 This plan is good for one report, but how about if the user wants to run a series of these reports. Basically there may be order the user wants the selected reports to be displayed. How would you accomplsih that goal?

How about if the user wants to add or delete ssrs reports that are to be executed. How would you accomplish that goal?

pass parameter from texbtox to rdlc report from a textbox

$
0
0

here is my aspx , bind to adverntureworks employee table , how can i pass parameters to rdlc , i defined the parameter in rdlc exaample jobtitle , now i want to pass value so specific record based on job title is displayed. thanks.

       <rsweb:ReportViewer ID="ReportViewer1" runat="server" Height="1022px" Width="1900px" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
                <LocalReport ReportPath="Report1.rdlc">
                    <DataSources>
                        <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet1"  />
                    </DataSources>
                    
                </LocalReport>
 
    </rsweb:ReportViewer>
        <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData" TypeName="AdventureWorksDataSetTableAdapters.EmployeeTableAdapter"></asp:ObjectDataSource>

What is the PublicKeyToken for ReportViewer 12 (2015)?

$
0
0

Anyone know this value for ReportViewer?

best approach for reports in Visual Studio 2012

$
0
0

hi,

We have a c# application to which we'd like to add some new reports.  I would like to include new reports as part of the application, include them on the main application menu.

I am learning about SSRS.  I read that I can use a reportviewer to include an SSRS report as either a 'local' or 'server' report.  

My plan is to allow the user to fill in some parameters in order to generate a report in the form of a bar chart. I also want to be able to export this report in pdf format.

I believe that I can do this by creating a report with parameters in SSRS, then use the reportViewer to point to it.    Is there something else that I am missing?  

Would creating a local report be better?

edit( I'm using sql server 2008)

Thanks for your opinions.

rdlc in vs2012 using html to text

$
0
0

Hi:

I hope to represent bold string in text, like "xxxxx<b>test</b>xxxx" in html depicting.

but i didn't know how to make it in visual studio 2012. And It's like the rdlc in vs2012 doesn't have

any option about markup or something else. 

Is that possible to make it. Thanks a lot.

PDF open/save prompt

$
0
0

We are using a URL to open SSRS reports in a new window (window.open(url)) with url likehttp://server/ReportServer?/folder/reportname...etc and include the parameter rs:Format=PDF.  How can we avoid the open or save popup and just always open the PDF?  In a related question, is there a way to also send the report directly to the default printer without user intervention?  Thanks.

RDLC Report each row of data table in one page

$
0
0

i have requirement to create rdlc report for printing multiple invoice and need preview also

first invoice on the first page second invoice on second page like.. i already created one rdlc which will show only one invoice 

if select multiple invoice in datatable all data showing in one page with same header details 

how can i do these


print value on report

$
0
0

http://i68.tinypic.com/fuaujc.png

i have this report 

i fill name , profession , address and Date from my database 

i have problem to fill the part of Tasks conclusion  which  based on tasks 1,2,3 and 4

if the four tasks with value  "A "  the output will be  Excellent

if task 1 , 2,3  "A"  the output will be  Very good 

so please any help at  this 

Show 13:00 as 1:00 PM

$
0
0

We are using below in a SELECT statement and it returns 13:00 PM rather than 01:00 PM.  The TT.TargetTime is a time(7) data type.  How can we return this as 01:00 PM or even 1:00 PM?

CONVERT(VARCHAR(5), TT.TargetTime, 108) + ' ' + RIGHT(CONVERT(VARCHAR(30), TT.TargetTime, 109), 2) AS TimeConv

Launching *multiple* SSRS reports from ASP.NET

$
0
0

Hello,

I have seen many examples of using Report Server processReport method to

a) set multiple parameters

b) Launch ONE SSRS report with these parameters

How do I go about launching multiple SSRS reports, in one browser, with a scroll bar so that user can scroll and see report1, report2, etc.? I would prefer NOT to have multiple windows, one window for each report

Part of this is: How do I configure the SSRS report to accept multiple 'sets' of parameters, one for each report?


Thank-you!

Issue with Rendering SSRS Report

$
0
0

Hi,

When i host asp.net application on my local IIS and Open SSRS Report and select  report rendering format as HTML4.0 then it is redering properly. but when same application host at one of our qa environment in which same report server is pointed ,and try to open same report with same data, it is rendering with extra broken html tagat the end(select same rendering format as HTML4.0). it is happening with some records .

Can anyone come accross same issue or some one can guide what could be the solution for this ?

Add a line to bar chart -ssrs 2008

$
0
0

Hi,

I have a bar chart with series. In my dataset I have one other value(salary for that member)that I need to plot horizontally across the bar chart.

The value is dynamic. How can I add a line?

Thanks

 graph

Viewing all 1418 articles
Browse latest View live


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