Byte Array from SQL Reporting Service

I am calling the Render method of the Microsoft SQL Reporting
Service's ReportExecution web service. It returns a Byte array in
the lastResult object. I am having the hardest time figuring out a
way to convert that byte array into something I can use in Flex.
The byte array, once converted into a more user friendly format,
will contain the rendered version of a SQL Report in whatever
format I have specified...in this case it is XML. Any input or
suggestions would be appreciated.

This is a little late, I know. but I just spent the day
struggling with this very issue. Hopefully this can help someone
else in the future. Here's my solution...
on MX:Operation -- result="fillXML()"
then
private function fillXML(): void {
var x:XML = new
XML(wsProps.GetDatasetData.lastResult.toString());
...do what you need with your xml...
I use an XMLList node of the result as the source property
for an XMLListCollection bound to a datagrid. Let me know if you
need more help to get it working. It works like a charm now that I
figured that out. I don't know if it's a slimy hack, or not, but it
gets the job done.

Similar Messages

  • Numbers can't open Excel files generated by SQL Reporting Services

    Hi
    I have an issue with Numbers '09 not being able top open certain Excel files. The Excel files in question are XLS files (not XLSX) and come from SQL Reporting Services. They open fine with Excel on the Mac and on Windows - but Numbers on both the Mac and iPad pops up with an "Invalid file format" when trying to open them.
    I see this as a problem with Numbers and would like to send Apple an example file so they can look at improving their Excel file support but I can't find anywhere to do this.
    Do Apple monitor these forums? Has anyone else experienced this issue?
    Thanks in advance,
    Mike.

    Thanks
    I compared the beginning of your file to the beginning of two XL ones which are on my machine (in fact, they are files created with openOffice).
    You may see that there are many differences.
    They may explain the different behaviour.
    If someone is able to drive Excel with an AppleScript,
    he may write a script opening your document in Excel,
    saving it
    opening the newly saved file in Numbers.
    As I don't own Excel, I ignore its required syntax so I can't write a clean script.
    If the XL's syntax is the same than the Numbers one, this quick and dirty one may do the trick :
    set aFile to (path to desktop as text) & "Treatment Report No Header.xls"
    tell application "System Events"
    set aName to name of disk item aFile
    end tell
    tell application "Numbers"
    open file aFile
    save document 1 (* maybe save document aName *)
    close document 1 (* maybe close document aName *)
    end tell
    tell application "Numbers"
    open aFile
    end tell
    Yvan KOENIG (VALLAURIS, France) dimanche 6 juin 2010 17:18:27

  • SQL Reporting Services 2014, Enabling Kerberos causes report manager to be extremely slow

    We are migrating our environment from SQL Reporting Services 2008 to 2014 on a new server. We are currently using kerberos on the 2008 instance, but when I enable kerberos on the 2014 Reporting Services instance the Report Manager becomes extremely slow.
    Has anyone seen this before? Any ideas of what I can check to see what is causing this problem.

    Just to clarify it is not slow when I run a report, it is slow in general. From first load to accessing a folder, settings, etc. This is all before even executing a report. 
    The error I see while using Wireshark is KRB Error: KRB5KDC_ERR_BADOPTION NT Status: STATUS_NO_MATCH. When I drill down the into the
    error I can see the kerberos string is testprjmnmtreports14.company.com, which is the URL we are using to access the site. I made sure to add that name as an SPN for the service account that is running SQL Reporting Services, however I still receive the error.
    Then I tried configuring the site to run without a hostheader, so I accessed the site with the server name ECTSTSQLRS5 and the site works perfectly fine, no errors are reported either. So it seems I have isolated the issue down to Kerberos but I am not sure
    how to resolve it. Here is some more information about my environment:
    DNS/URL used: testprjmnmtreports14.company.com
    Server Name (FQDN): ECTSTSQLRS5.company.int
    AD Domain Name: company.int
    Server Version: Windows Server 2012 R2
    AD Functional Level: 2008 R2
    I also have the following SPNs set for my SQL service account:
    http/testprjmngmtreports14.company.com
    http/testprjmngmtreports14
    http/ECTSTSQLRS5.COMPANY.INT
    http/ECTSTSQLRS5
    As you can see I am trying to use a .com address but my AD domain is .int which I think is the issue, but I do not have the same problem on my other server that is running Windows Server 2008 R2. 

  • Migrating reports from MS SQL reporting services to BO(Crystal reports)

    Hi Folks,
    I am looking to migrate my existing reporting application to BOXI and crystal reportsXI. The current reports application is build on Microsoft SQL reporting services platform. I have thousands of reports in the application and am looking for a solution to migrate all these existing reports into BO compatible format, i.e., .rpt format.
    Anyone with previous experience of this kind of migration/conversion for suggestions on the quickest and most cost effective solution.
    I do not want to be developing all the reports again on BO.
    Appreciate any kind of assistance on this.
    Thanks,
    Shetty.

    Hi Tim,
    Thanks for the reply.
    I searched the forum and found the link to [url|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/BOE_SDK/boesdk_java_dg_doc/doc/boesdk_java_dg/URLreporting_new.html] which specifies the process to use URL Reporting for Crystal Reports . But to implement this we have to change the architecture of our existing application as presently we are directly accessing the report in URL to run the report. I was not able to found any solution that implements this architecture.
    Does Business Object Enterprise 11.5 still supports this architecture?
    If we use the architecture specified in the above URL for URL Reporting for Crystal Reports  then how we can migrate all our reports to BOE 11.5? We have to use the Publish Wizard for that, to get the ids for our reports?
    There was a parameter APSTOKEN how can we get a token. Can it be a static token that can be used by all the users to access the reports?
    Thanks!

  • How to Convert MM/DD/YYYY to YYYY/MM/DD in SQL Reporting Services

    i am having difficulty of converting a parameter field, called @startdate, on sql reporting services report to YYYY/MM/DD format.  the parameter @Startdate was set to Data/Time.  @Startdate is 6/1/2014 12:00:00 and I want to convert it
    to 2014/06/01.  I want to compare @Startdate with a column in database called Begindate which is in format of YYYY/MM/DD hh:mm:ss.  I tried the followings
    select * from Atable where cast(Atable.Begindate as date) >= cast(@Startdate as date)
    select * from Atable where cast(Atable.Begindate as date >= cast(convert(datetime, @Startdate) as date)
    SQL Reporting Services only gives me Text, Boolean, Date/Time, Integer and Float.
    Regards,

    Hi Elmucho,
    Sorry for the delay. I tested with the sample data you provided, however everything works well in-house. Could you please creste a new report and check the result. Here are the steps I performed:
    1.  Create a table and insert the following data:
    Name (varchar(50))    Begindate (datetime, not null)    
    Lastdate (datetime, not null)
    bob                          
    2008-01-01 08:08:08.000      2010-10-10  
    10:10:10.000
    alice                         
    2010-10-10 10:10:10.00       2011-11-11
      11:11:11.000
    smith                       
    2011-11-11 11:11:11.00       2012-12-12   
    12:12:12.000    
    2. Open SQL Server Data Tools, create the data source and add the dataset with the below query:
    SELECT     Name, Begindate, Lastdate
    FROM         [tablename ]
    WHERE     (CAST(Begindate AS date) >= CAST(@Startdate AS date)) AND (CAST(Lastdate AS date) <= CAST(@Enddate AS date))
    3. Then, click execute button, it prompts for inputting the parameter value.
    @Startdate        
    6/1/2008
    @Enddate          
    5/1/2014
    Enter the date and press OK.
    4. Here is the result in the query designer:
    Insert a table and fields. Save the report and preview:
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Upgrade 2010 to 2013 with SQL Reporting Services

    I'm getting ready to upgrade to 2013.
    When I run the Test-SPContentDatabase I get:
    Category : MissingWebPart
    Error : True
    UpgradeBlocking : False
    Message : WebPart class [ab6d9dad-e23c-ce4f-ff98-f6575a1ccf4c] (class [
    Microsoft.ReportingServices.SharePoint.UI.WebParts.ReportView
    erWebPart] from assembly
    [Microsoft.ReportingServices.SharePoint.UI.WebParts,
    Version=10.0.0.0, Culture=neutral,
    PublicKeyToken=89845dcd8080cc91]) is referenced [24] times
    in the database [is-sharepoint], but is not installed on the
    current farm. Please install any feature/solution which
    contains this web part.
    Remedy : One or more web parts are referenced in the database
    [is-sharepoint], but are not installed on the current farm.
    Please install any feature or solution which contains these
    web parts.
    Locations :
    Category : MissingAssembly
    Error : True
    UpgradeBlocking : False
    Message : Assembly
    [Microsoft.ReportingServices.SharePoint.UI.ServerPages,
    Version=10.50.0.0, Culture=neutral,
    PublicKeyToken=89845dcd8080cc91] is referenced in the
    database [is-sharepoint], but is not installed on the
    current farm. Please install any feature/solution which
    contains this assembly.
    Remedy : One or more assemblies are referenced in the database
    [is-sharepoint], but are not installed on the current farm.
    Please install any feature or solution which contains these
    assemblies.
    Locations :
    Category : Configuration
    Error : False
    UpgradeBlocking : False
    Message : The [is.photomask.com] web application is configured with
    claims authentication mode however the content database you
    are trying to attach is intended to be used against a
    windows classic authentication mode.
    Remedy : There is an inconsistency between the authentication mode of
    target web application and the source web application.
    Ensure that the authentication mode setting in upgraded web
    application is the same as what you had in previous
    SharePoint 2010 web application. Refer to the link
    "http://go.microsoft.com/fwlink/?LinkId=236865" for more
    information.
    Locations :
    The first two have to do with reporting services.  I'm trying to workout how to go about getting these errors to go away.  I don't want to remove SQL reporting or migrate a broken site and fix it later.  FYI it does migrate but reporting services
    is of course broken.
    So what I was wanting to do was to upgrade SQL Reporting Services for SharePoint 2010 from 2008 SQL to 2014 SQL first.  This would be in the hopes that it would make the migration to SharePoint 2013 work as the assemblies would change to the proper
    version.
    Can anyone elaborate on my upgrade path?
    I'm still looking up the "Claims Based" authentication thing.  I've found an article on how to migrate it so not a big deal.  I do wonder however if this is tied to the issue I saw with default.aspx and home.aspx being denied to all users
    after I did migrate a content db.
    David Jenkins

    Hi David,
    The following sections describe the basic steps needed to upgrade or migrate from 2008 versions of Reporting Services SharePoint mode to 2014 version.
    SQL Server 2008 R2 to SQL Server 2014
    Starting environment: SQL Server 2008 R2, SharePoint 2010.
    Ending environment: SQL Server 2014, SharePoint 2010.
    In-place upgrade is supported and there is no down time for your SharePoint environment.
    Install the SQL Server 2014 version of the Reporting Services add-in for SharePoint on each web front-end in the farm. You can install the add-in by using the SQL Server 2014 installation wizard or by downloading the add-in.
    Run SQL Server 2014 installation to upgrade SharePoint mode for each “report server”. The SQL Server installation wizard will install the Reporting Services Service and create a new Service application.
    If you also want the ending environment to run SharePoint 2013, you need to complete a database-attach upgrade of the SharePoint 2010 to SharePoint 2013.
    For more scenarios information, please refer to:
    http://msdn.microsoft.com/en-us/library/ms143747.aspx#bkmk_sharePoint_scenarios
    Per the supported combinations of SharePoint and Reported Services Components, I’d recommend you firstly upgrade Reporting Services to 2014, then upgrade SharePoint to 2013.
    For more information:
    http://msdn.microsoft.com/en-us/library/gg492257.aspx
    The link below is the reference for migrating a Reporting Services:
    http://msdn.microsoft.com/en-us/library/hh759331.aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Cannot consume SQL Reporting Services 2005 webservice

    Hello all,
    I have seen some other postings on this subject, but no
    answers anywhere.
    I am trying to run SQL Reporting Services from a CF
    application. The wsdl file is at
    http://172.XX.XX.XX/reportserver/reportservice.asmx
    When I point my browser to that page, I see the XML, so I
    know the URL is correct.
    When I try to consume the webservice, by either CFINVOKE or
    CFSCRIPT , I get the following error:
    "Could not generate stub objects for web service invocation"
    We are running CF MX on Windows 2003 server.
    Any ideas, references, or resources would be greatly
    appreciated!
    Thanks,
    Kathryn

    Ken,
    Thanks. I do exactly that, ctrl-c to copy, ctrl-v to paste. I
    can Preview the message and see the attached code, but when I click
    'Reply to Topic' to post the message, I get the "page not found"
    error....sigh...Thanks for trying to help....
    Kathryn

  • Service manager console can't connect to Service manager data warehouse SQL reporting services

    When I start Service manager console, it gives this kind of error:
    The Service Manager data warehouse SQL Reporting Services server is currently unavailable. You will be unable to execute reports until this server is available. Please contact your system administrator. After the server becomes available please close your
    console and re-open to view reports.
    Also in EventViewer says:
    cannot connect to SQL Reporting Services Server. Message= An unexpected error occured while connecting to SQL Reporting Services server: System.Net.WebException: The request failed with HTTP status 401: Unauthorized.
    at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
    at Microsoft.EnterpriseManagement.Reporting.ReportingService.ReportingService2005.FindItems(String Folder, BooleanOperatorEnum BooleanOperator, SearchCondition[] Conditions)
    at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItems(String searchPath, IList`1 criteria, Boolean And)
    at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItems(String itemPath)
    at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItem(String itemPath, ItemTypeEnum[] desiredTypes)
    at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.GetFolder(String path)
    at Microsoft.EnterpriseManagement.Reporting.EnterpriseReportingGroup.Initialize()
    at Microsoft.EnterpriseManagement.Reporting.ServiceManagerReportingGroup..ctor(DataWarehouseManagementGroup managementGroup, String reportingServerURL, String reportsFolderPath, NetworkCredential credentials)
    at Microsoft.EnterpriseManagement.Reporting.ServiceManagerReportingGroup..ctor(DataWarehouseManagementGroup managementGroup, String reportingServerURL, String reportsFolderPath)
    at Microsoft.EnterpriseManagement.UI.SdkDataAccess.ManagementGroupServerSession.TryConnectToReportingManagementGroup() Remediation = Please contact your Administrator.
    We have a four server set-up where SCSM, SCDW, and sqls for both are on different servers. Also I have red that this could be a SPN problem, but this has  been worked on last week without the SPNs.

    On the computer you get the "SQL Reporting Services server is currently unavailable" message please open the Internet Explorer and try to connect to the URL <a href="http:///reports">http://<NameOfReportingServer>/reports
    This should open the reporting website in IE. If this isn't working you should check the proxy settings in IE. If the URL doesn't work in IE it won't work in the SCSM console as well (and vice versa).
    Andreas Baumgarten | H&D International Group
    Actually I can't access to the reporting website. It asks me credentials 3 times and then return a blank page. Also error message comes to the EventViewer System log with id 4 and source Security-Kerberos.
    The Kerberos client received a KRB_AP_ERR_MODIFIED error from the server "accountname".
    The target name used was HTTP/"reporting services fqn". This indicates that the target server failed to decrypt the ticket provided by the client.
    This can occur when the target server principal name (SPN) is registered on an account other than the account the target service is using.
    Ensure that the target SPN is only registered on the account used by the server.
    This error can also happen if the target service account password is different than what is configured on the Kerberos Key Distribution Center for that target service.
    Ensure that the service on the server and the KDC are both configured to use the same password.
    If the server name is not fully qualified, and the target domain (domain.com) is different from the client domain (domain.com), check if there are identically named server accounts in these two domains,
    or use the fully-qualified name to identify the server.
    I can access the website directly from the server which hosts Reporting Services.
    Also I query "setspn -Q HTTP/"reporting services fqn" whit result NO SUCH SPN FOUND.

  • Remove Corrupted Sharepoint SQL Reporting Services

    Hi,
    I had my sharepoint 2013 foundation with sharepoint-SQL reporting services integrated removed from my server 2012. And I removed my sharepoint folders and regedit files for sharepoint manually to ensure complete uninstallation of sharepoint from my server.
    But now I did a reisntall of sharepoint and it works completely fine, but when I tried to install the reporting services again I cant as it says it is already installed but the service is not listed in my sharepoint Services list and when i tried removing
    the reporting service using the SQL installer from control panel it exits with an error
    Action required:
    Use the following information to resolve the error, and then, try to uninstall this feature again.
    Feature failure reason:
    An error occurred during the setup process of the feature.
    Error details:
    § Error installing SQL Server Reporting Services
    There was an error attempting to remove the configuration of the product which prevents any other action from occuring.  The current configuration of the product is being cancelled as a result.
    Error code: 25012
    Log file: C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150220_144131\sql_rsshp_Cpu64_1.log
    Visit http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=sql_rsshp.msi%40Sqlmsirc_NotifyFeatureStates_64%4025012 to get help on troubleshooting.
    § Error installing SQL Server Reporting Services
    Install-SPRSServiceProxy : The term 'Install-SPRSServiceProxy' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.At
    line:1 char:35+ & {$DebugPreference = 'Continue'; Install-SPRSServiceProxy -uninstall}+                                  
    ~~~~~~~~~~~~~~~~~~~~~~~~    + CategoryInfo          : ObjectNotFound: (Install-SPRSServiceProxy:String) [], CommandNotFoundException    + FullyQualifiedErrorId : CommandNotFoundException
    Error code: 0x80131500
    Visit http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=0x6A1944E2%400xC68B78F0&EvtType=0x6A1944E2%400xC68B78F0 to get help on troubleshooting

    Install the sharepoint reporting services add-in to the exact same drive where you installed it before using the MSSQL installation file, now uninstall the add-in and the reporting service feature from the control panel. This will remove the corrupted
    files completely and now do a fresh installation

  • SAP and SQL Reporting Services.

    Hi,
    I'm trying to implement a few reports using MS SQL Reporting Services.  I don't think that SAP (we are currently on 4.6C, and BW is not an option for now) has anything nearly as cool.  The problem is that SQL RS can only create queries against ODBC and OleDB providers.  One of the solutions would be to create a view in SAP DB and query against it, but the logic behind is just too complicated for a view that you can create in SAP.  Is there another way that I can interface SAP real time to SQL RS?  Anyone had experience with that, or is there a solution from SAP with similar capabilities?
    Thanks,
    Leon

    Hi Leon,
    maybe you can use the SAP.NET Connector and save the results in SQL-SERVER-Tables or use the OLEDB Provider for SAP from NSX software.
    Greetings,
    Andreas Rohr

  • SQL Reporting Services with Java EE

    I have developed a Java application for calling the SQL Reports. A couple of reports are made in the server. This SQL Reporting server is deployed and the client is made in the java using Werb services. Whenever a search is done from the Java application, reports are displayed on the JSP page using the web service methods. But the problem is the entire report is displayed. Is there any way to display the report based on the particular item search. Suppose, if search is made on "Australia" in the coulumn Country, the report should contain only Australian related data. Currently the search is based on the report name itself.

    bobz wrote:
    jschell wrote:
    bobz wrote:
    Is there any book on SQL Reporting services with Java
    [http://www.javaworld.com/javaworld/jw-01-2005/jw-0110-sqlrs.html]
    This looks hopeful.I have already developed a java EE for calling reports with the help of ---"MSDN Virtual Lab: Implementing SQL Server Reporting Services with a Java Enterprise Edition (EE) Application (ID:1032315323)". Now I need to find out the parametrized reports(passing parameters to the report calls and more customization using java). In .NET, reportviewer controller is available for this purpose. I want to achieve the same type of thing using java.The protocol of controlling the Report Server is a feature of the Report Server.
    To control it you learn the protocol. To use it you program it in java.
    The first has nothing to do with java. The second obviously does.

  • Sql reporting services stops every 24 hours for a short time then restarts

    I have noticed that recently in sccm 2012 sp1 the sql reporting services stops every morning at 7:58 am and restarts after a minute or two.  The only entry in the event logs is when it stops.  I don't see anything tied in with it that stops or
    starts at the same time and there are no tasks or anything like that which would point to this time frame.  I just thought I would throw this out there to see if anyone had any ideas.  Usually with something of this nature there are some corresponding
    log entries that go beyond the service stopping, but in this case there isn't.  Thanks for any help you can provide.

    I think I found out what was going on.  I approached this from a different angle and was directed to the sql reporting services logs and found information on the reporting web server stopping.  Researching that yielded the following information. 
    It appears that this is a result of the SSRS Web Server recycling the App Domain, which is supposed to be a pretty normal process.  In fact, the configuration file for this process defaults to recycling the app domain twice daily.  This lines up
    with the time frame that the reporting service is stopping.  It restarts it in less that two minutes and logs the recyling in the reporting services log twice daily so why I'm not seeing this entry in the event logs twice daily or even every day must
    be a timing thing.  I think if it takes an extra millisecond or two to recycle the app domain, it dumps an entry into the windows event logs and the sccm component status monitoring.
    http://ask.sqlservercentral.com/questions/97176/reporting-web-server-stopped.html

  • Sharepoint SQL Reporting Services Add-In

    Hi,
    I have installed the Sharepoint SQL reporting services Add-in in one of my application servers and when I call the sites created from the application server itself they show the add-in feature in them in the "site features "list. But when I call
    the same site from a WFE in the farm with no add-in installed the the site doesn't show the add-in feature in the "site Feature" list.
    This is not supposed to happen as I have tried the same in another farm and the add-in was needed to be installed only in the application server and it would automatically be shown in sites even when they are called from a WFE or anywhere.

    SSRS in SharePoint Integrated mode requires the installation of two components.  SSRS in SharePoint Integrated mode only needs to be installed on one App server.  But the SSRS SharePoint Add-in needs to be installed on all the WFEs and the app
    server where SSRS in SharePoint Integrated mode is installed.  Not sure how you got it to work in the other farm.  Take a look at the following article:
    https://msdn.microsoft.com/en-us/library/hh479775.aspx
    You will note in the diagram that the Add-in is installed on each WFE.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • SharePoint 2013 and SQL Reporting Services Integration Mode

    I'm setting up a production environment with SQL Server 2012 SP1 (Clustered) and SharePoint 2013.
    I successfully setup the integration using PowerShell (Install-SPRSService & Install-SPRSServiceProxy). I can see the SQL Reporting Service on the CA Services and it's started, I've also created the Services Application without any issues (And linked it
    to my web application). However the Report Server Integration feature is missing from my site collection and so are the content types. I even tried creating a new site collection and no dice.
    Appreciating any help.
    Best,
    MI

    Hi MI,
    As per my understanding, I think this issue is caused by you haven’t install the Reporting Services add-in for SharePoint Products or is not installed correctly. If we install the Reporting Services add-in for SharePoint Products after the installation of
    the SharePoint Server, then the Report Server integration feature and the Power View integration feature will can be activated for root site collections. For other site collections, we can manually activate the features. To fix the issue you occurred, we should
    install or reinstall the Reporting Services add-in for SharePoint Products.
    For more information about Install Reporting Services 2012 SharePoint Mode for SharePoint 2013, please see the following article:
    http://msdn.microsoft.com/en-us/library/jj219068.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Expand and Collapse(+/-) option in a Matrix SQL Reporting Services 2008

    Hello All,
    I am having Expand and Collapse(+/-) option in a Matrix SQL Reporting Services 2008. It's not working when it is havnig a Row Group and Column Group.
    Does reporting services has this flexibulity?? It's working fine if it's only have a Row Group an it's not working if it is having Row and a Column Group. Can any one suggest how to work aroung with this.
    any help much appriciated.
    Thanks & Regards,
    Jeevan Dasari.
    Dasari

    Drill-down feature is a basic requirement, it is concluded in Reporting service from SSRS2000 to SSRS2008 R2, To
    your scenario I think the root cause is relevant to your incorrect steps. Please follow the steps below and then give the feedback:
    1.     Right-click the child groups in the
    Row Groups panel which is at the left-bottom of the BIDS, and then select
    Group Properties…
    2.   
    Switch to Visibility tab, and then select
    Hide Radio-button, click the checkbox of Display can be toggled by this report item.
    3.   
    Then select the parent group datafield in the drop-down list.
    4.   
    Click OK.
    Thanks,
    Challen Fu
    Challen Fu [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Maybe you are looking for

  • Problem with importing comments

    Hi All When trying to import comments relating to a document I have, the following error message occurs: "The comments could not be imported because the document's permissions do not allow comment import operations" Should the creator of the doc chan

  • Thread safe XSLT extension

    We have a servlet that gets called with a set of parameters. I want to set one of those parameters within my XSL extensions so that it is retrievable from the XSL code. Because the extensions are static and used by all XSL transforms, they are not th

  • Placing customized artwork on mp3 file?

    I would like to add our school logo or customized artwork to our mp3 recordings. Is there an easy way to do this? It seems like the "tag and rename" option is all about finding album art and attaching it to a song, which is not exactly what I want to

  • Blackberry Messenger e-mail confirmati​on?

    I recieved an e-mail (to both of my e-mail addresses) from Blackberry last night, this is what it read: "Hello, Thank you for using BlackBerry Messenger. To help prevent unauthorized use of this email address, we need to confirm its ownership. Please

  • Tax code - test scenario

    I have recently updated an internal tax table applied to stock options for employees. Can someone please guide me on how I will do a test scenario for this?