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

Is Report Viewer 2016 (15) compatible with a SQL Server 2008 R2 backend?

$
0
0

Hi,

Is Report Viewer 2016 (v15) compatible with a SQL Server 2008 R2 and SSRS 2008 R2 backend?

We have a client who will not be upgrading their database server in time for the release. I need to know if I need to remove the Report Viewer upgrade from the release.

And yes, I am fully aware that 2008 R2 is out of extended support.

Many thanks,

James


Report viewer no carga en el form

$
0
0

 hola , espero me puedan ayudar ,  tengo un informe realizado en reportViewer , pero al momento de enlazarlo con el form no me muestra nada. solo queda el elemento reportviewer en la parte inferior y en formulario no se refleja,ya eh intentado de muchas formas pero aun asi  no funciona, instale el paquete por consola y tambien manuelamante desde extensiones nuget y nada sirve.



How to use Azure Active Directory as a data source in Power BI Server (2017) on prem?

$
0
0
I have not been able to find any examples of this.    I want to get the roles for the user running the report to be able to filter their data access.

Is it possible to show lines depending on parameters in a diagram?

$
0
0

Hi everyone,

I have a table with the following structure:

Each column (excluding date) should be a single line a diagram. All lines should be displayed in the same diagram. Is it possible to hide/show lines depending on a parameter? I want to include a parameter called "lines" with the values "planned","baseline", "earliest" etc. So if the user unchecks "planned" in the parameter, the line should be hidden in the diagram.

Best regards
Patrick


SSRS table with data followed by totals based on group by

$
0
0

I am new to SSRS and need to know how this can be done.

I have a database table with sales information. for example.

date                     SaleAmt

----------------------------------

apr 10 2010          100

apr 12 2010          100

jun 10 2010          100

jun 15 2010          100

---------------------------------

i need the output as below

date                     SaleAmt

----------------------------------

apr 10 2010          100

apr 12 2010          100

jun 10 2010          100

jun 15 2010          100

Apr Total               200

June Total             200

total                     400

------------------------------------

here i want to understand if there is a way to make "April Total" and "June Total" so on and so-forth dynamic (as in can the report get the distinct of months from the database table and append to the report tables result set?)

Thanks in advance.

SQL Server Report - Loop through data source and generate SSRS report

$
0
0

To whom it may concern,

I currently have an Access database with VBA code that loops through a Vendor table and generates one Excel report for each vendor in the table and saves each vendor report file down to a server folder.  Note: these vendor reports are sent to separate vendors so the data for each vendor needs to be in a separate report file. They cannot be merged into one SSRS report using sub-report logic. Is this pattern achievable in SQL Server Reporting Services? If so, how? And/or what tool would you recommend for this pattern? Microsoft Power Apps, Microsoft Flow, ... ?

Thanks,

Dan

PowerBI Branding

$
0
0
I am trying to find the correct attribute in the JSON colors file to change the text color on the header - i believe the header background is the secondary attribute. I cannot seem to change the text color - where it would normally say power bi next to the default logo in the top right. I have tried many attribute so far and the text is always the same color as the background.

Run Report from url that opens save as PDF


Browser permission the folder, but some reports give error

$
0
0

Some of our users are experiencing the following permissions error on certain reports in SSRS:  "The permissions granted to user 'bla\bla' are insufficient for performing this operation (rsAccessDenied)"

Facts about the configuration that explain why this should not be happening are:

  • We have a 50+ reports in the this particular folder in SSRS 2016.
  • Browser permission is set at the folder level for the Active Directory group “ourdomain\Domain Users” which has all users in our company.
  • I have confirmed that the users in question are in this "Domain Users" group.
  • I have confirmed that these same users can open other reports in this folder.
  • I have confirmed that the reports in question do not have any other permissions set up and are inheriting their permissions from the parent folder (i.e., Browser permission).
  • The data sources on the reports use a generic application login and nothing about the report itself is connecting as the current user (thus the error must be coming from Report Manager, not the running or rendering of the report)

Some things I’ve attempted:

  • Added the user directly to the folder with Browser permission – same error
  • Broke the permission inheritance on the report – same error
  • Broke the inheritance and added the user with Browser directly to the report – same error
  • Redeployed the report from Visual Studio – same error
  • Completely deleted the folder and all reports, recreated the folder, re-added the group level Browser permission to the folder, redeployed all the reports in the folder – same error

We’ve see 4 or 5 reports so far out of the many in this folder where these users have this error and I can find anything about the reports or the users that would cause this behavior.

Help!


    Organon Professional Services

    Nested SWITCH statements for coloring table rows depends on field value

    $
    0
    0

    I'm new in SSRS reports. I have a problem, it drives me crazy for several days.

    There is a set of categories and subcategories, like this:

    A - categoryA

    A - categoryA.A01 - subcat A01

    A - categoryA.A01 - subcat A01.A01A - subcat A01A

    A - categoryA.A02 - subcat A02

    B - categoryB

    C - categoryC

    D - categoryD

    ...

    I created a report, where each row represents category or subcategory. I need to set unique background color for each row. I've already tried so many combinations of SWITCH and IIF statements, and none of them works like I need.

    Considering that category name can change, and each subcategory in its name contains the name of all parent categories separated by a dot, I use Split() and Left() functions to get the code at the beginning of the category or subcategory name, only this code will not change.

    This expression works better than others, but not quite as it should. It sets the same color for subcategories of the same level.

    =Switch(Left(Fields!Category.Value,1) = "A",
    IIF(Split(Fields!Category.Value, ".").length = 1,
    "#e4daf3",
    IIF(Split(Fields!Category.Value, ".").length = 2,
    "#8db4e2",
    IIF(Split(Fields!Category.Value, ".").length = 3,
    "#ebf1de","#00ff00"))),
    Left(Fields!Category.Value,1) = "B", "#fdd9d9",
    Left(Fields!Category.Value,1) = "C", "#fcffd4", 
    Left(Fields!Category.Value,1) = "D", "#8de2de", 
    Left(Fields!Category.Value,1) = "E", "#c6e6fd"
    )

    I've tried to make this expression better, in so many ways, like this:

    =Switch(Left(Fields!Category.Value,1) = "A",
    IIF(Split(Fields!Category.Value, ".").length = 1,
    "#e4daf3",
    IIF(Split(Fields!Category.Value, ".").length = 2 AND Left(Split(Fields!Category.Value, ".")(1),3) = "A01",
    "#8db4e2",
    IIF(Split(Fields!Category.Value, ".").length = 2 AND Left(Split(Fields!Category.Value, ".")(1),3) = "A02",
    "#ff0000",
    IIF(Split(Fields!Category.Value, ".").length = 3 AND Left(Split(Fields!Category.Value, ".")(2),4) = "A01A",
    "#0000ff","#00ff00")))),
    Left(Fields!Category.Value,1) = "B", "#fdd9d9",
    Left(Fields!Category.Value,1) = "C", "#fcffd4", 
    Left(Fields!Category.Value,1) = "D", "#8de2de", 
    Left(Fields!Category.Value,1) = "E", "#c6e6fd"
    )

    But this expression somehow set background color only to subcategories, root categories are clear, no background at all.

    Maybe I didn't see something, or maybe there is some rules that forbid using nested SWITCHes and IIFs. Help me, please.

    Move ReportServer databases from 2008R2 server to 2016

    $
    0
    0

    Hi all,

    I have an existing SQL 2008R2 server with SSRS installed and heap of reports with complex folder structures etc. 

    I want to move these reports to my new 2016 server. 

    The ReportServer  and ReportServerTempDB schemas have no doubt changed - what's the best way to move this report server configuration across. 

    Do I install 2008R2 on my new server and then upgrade (not sure if this is possible yet)?

    Thanks for reading.

    Clay

    How to Summarize a Column in Report Builder

    $
    0
    0

    Hello

    I have group my dataset by Code (last 3 digit of account) and description but I need to have everything summarize in one line 

    I need as result the last line of this group, I dont need the detail, Ihave all 131 account group together.

    

    Subscription Error - (Failure sending mail: An error has occurred during report processing.Mail will not be resent.)

    $
    0
    0

    Hi Team,

    am getting the error like 

    AuthzInitializeContextFromSid: Win32 error: 1727, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error. ;
    notification!WindowsService_0!4054!08/20/2019-00:00:09:: i INFO: Handling subscription 6d1767fd-602a-4a69-92cb-9b7f4b6953d2 to report Dashbord1, owner: MTNUGA\bhavyaj, delivery extension: Report Server Email.

    i did all the things but still am not able to idenfy the isssuse plese help me 

    Include generic reference to ReportExecutionService for utilities

    $
    0
    0

    Ok

    I have a utility to generate an in memory render of an SSRS report.  I want to put it in a library so it can get used across multiple projects.  The problem is that I can't find a way to include a reference to the proper DLL without adding reference to an existing Web Reference.  My code uses ReportExecutionService, ExecutionHeader and ParameterValue.  I get a:

    "Thetype or namespace name 'ReportExecutionService' could not be found (are you missing a using directive or an assembly reference?)"

    I've seen posts that it exists in reportexecutionservice.dll or ReportExecution2005.dll but I can't find those files anywhere.  I just find it hard to believe that I have to actually create a reference to an existing server that can then be used to connect to any server.

    Can somebody point me in the right direction?

    Thanks

    David


    dbl

    IIF statement query

    $
    0
    0

    Hello

    I have an output in my queries that gives me:

    xxxxxxx xxxxxxxxx : 123456 (xx) - xxxxxxx...

    or

    xxxxxxx xxxxxxxxx : 12345678 (xx) - xxxxxxx...

    basically text before either a 6 or 8 digit number then text after

    I've created a column in a table in SSRS that just shows the number, and I used this expression:

    =Mid(Fields!my.Value,InStr(Fields!my.Value,":")+1,Instr(InStr(Fields!my.Value,":")+3,Fields!my.Value," ") - InStr(Fields!my.Value,":") -1)

    Which now gives me an output of 123456 or 12345678.

    However I'd like to do an additional thing. I'd like to create an output that if the digit is 6 numbers long returnsLondon and if the digit is 8 numbers long then it returnsParis .  Is this possible - I've tried with IIF but have singularly failed so far.

    Help much appreciated - thanks.



    Setting the secondary colour on a bar graph based off of the primary colour

    $
    0
    0

    Hi,

    I am trying to set my secondary colour on a bar graph, however I would like it to be dependent on the primary colour that is being use, I want to be able to use the same solution for multiple reports so would ideally like to not hard-code the colours based on report data but rather the series colour.

    I have a custom palette setup and would like the secondary colour to be a lighter version of the primary. 

    Thanks 

    Control PageBreak in SSRS

    $
    0
    0

    Hi All :

    Can anyone to advise how to create page break on single record which have hundred of columns ?

    The example as below :

    Report Table structure as below
    Column1
    Column2
    Column3
    .
    Column99

    I want the report layout is 
    Record : 1
    Column1 : Column1.Value
    Column2 : Column2.Value
    Column3 : Column3.Value
    Column4 : Column4.Value
    ----- page break -----
    Record : 1
    Column4 : Column4.Value
    Column5 : Column5.Value
    Column6 : Column6.Value
    Column7 : Column7.Value
    ----- page break -----
    Record : 1
    Column85 : Column85.Value
    Column89 : Column89.Value

    ----- page break -----
    Record : 2
    Column1 : Column1.Value
    Column2 : Column2.Value
    Column3 : Column3.Value
    Column4 : Column4.Value

    ----- page break -----
    Record : 2
    Column4 : Column4.Value
    Column5 : Column5.Value
    Column6 : Column6.Value
    Column7 : Column7.Value

    ----- page break -----
    Record : 2
    Column85 : Column85.Value
    Column89 : Column89.Value

    Thank you

    Report Builder Custom HTTPS Port

    $
    0
    0

    Hi all,

    I have an issue with Report Builder using a custom port number with HTTPS for my report server. I can connect to Report Server from Report Builder, I can open and save reports, but when I try running a report from Report Builder, it sends the request to port 443 instead of my custom port resulting in a 401 unauthorized. 

    I know it tries to hit my server on port 443 because I see it in my IIS log:

    POST /ReportServer/ReportExecution2005.asmx - 443

    Is this a bug in Report Builder or is there a way to tell Report Builder to use a certain URL for any request including the requests to ReportExecution2005.asmx service?

    Thanks

    Reporting Services Errors after Windows patching

    $
    0
    0

    Hi All,

    Business users reported different errors while accessing the report server URL. As the business users are not able to access the reports, we have restarted the Reporting services. This resolved the issue.

    This issue happens every time after windows security patch. Every time we will restart the Reporting services for the URL to work. Now business is asking for RCA.

    What are the possible reasons for the URL not to work after Windows patching?

     

    Below are the errors:

    Users 'XXXXXX' does not have required permissions. Verify that sufficient permissions have been granted and Windows User Control(UAC) restrictions have been addressed.

     
    An unexpected error occurred in Report Processing. (rsInternalError) Get Online Help   
     
    The type initializer for 'System.Drawing.ToolboxBitmapAttribute' threw an exception.   

    Vinai Kumar Gandla

    Navigating through an SSRS Report Page

    $
    0
    0

    Hi guys,

    I have a one page SSRS Report that has like 4 tables each of which contains like 20-rows of data.

    Table 1  (20-rows)   - Go to Table 2

    Table 2  (20-rows)   - Go to Table 3

    Table 3  (20-rows)   - Go to Table 4

    Table 4  (20-rows).

    In order to avoid having the users scroll down to the page since its very long, I want to have a link one each table header that allows the user to jump to the next table without scrolling down.

    So if the user click on Go to Table 2, that will take him to Table 2.


    me

    Viewing all 28687 articles
    Browse latest View live


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