Unable to see options in reporting services with admin account


I have sysadmin access to the sql server but i am unable to access the reports which i am using earlier. recently i have updated the server sp4 on current sql sever 2005.
how to re-enable the  access to the reporting server. please help me.

Hi RoyalM,
According to your description, you are using windows domain account which has full access to report manager, but you couldn’t see any folders in the page.
Based on my research, this is because of User Access Control. Windows Vista, Windows 7, Windows 8, Windows Server 2008 and Windows Server 2008 R2 operating systems limit the overuse of elevated permissions by removing administrator permissions when accessing
applications. Because the noted operating systems limit permissions, members of the local Administrators group run most applications as if they are using the Standard User account.
If you are executing the report locally, we can Run the Internet Explorer (IE) as Administrator. if the folders still are no shown, we can add the report manager to Trusted sites zone to solve the issue.
If there are any other questions, please feel free to ask.
Regards,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Unable to modify/replace/unlock hosts file with admin account

    Hi all,
    I'm having a serious issue when trying to modify the hosts file in Yosemite 10.10.3
    I already tried through the terminal with sudo commands, Get Info window, editing the file externaly and then trying to replace the original hosts with the new but nothing works. Already repaired the disk permisions in case it had to be with the issue but didn't help.
    I'm using an account with admin privileges but it seems I'm not allowed to unlock the file.
    Here is a screenshot of how the GetInfo windows looks like for the hosts file:
    And here is what I get when trying to save from sudo nano /private/etc/hosts
    Any help will be highly welcomed.

         sudo chflags nouchg /private/etc/hosts
    and relock it when you've finished
         sudo chflags uchg /private/etc/hosts
    It's locked for a reason.
    C.

  • Use parameters in SQL Server reporting services with sharepoint lists

    I want to make report from sharepoint 2010 list and forms library in sql server reporting services.
    but also want to apply parameters.
    I tried but parameters but it is not working.
    How I can apply sharepoint lists parameters in sql server reporting services ?
    How to run or view report of sharepoint lists or form library in sqlserver reporting services with required parameters?

    Hi John,
    When we use SharePoint list as datasource in SSRS it has two method to add parameter. Suppose we have a dataset (DataSet1) get data from SharePoint list. Please refer to the methods below.
    Method 1: We can add parameter in the Query Designer dialog box to add parameter.
    Click “Add Filter” icon in the “Applied filters” dialog box in Query Designer.
    Select the corresponding field (Title), fill with specific conditions, and select Parameter option in the end of the row.
    Create a dataset (DataSet2) fill with Title field.
    Double click the parameter we create above, set the available values from DataSet2 field Title.
    (Note: In the situation, we are get the single-value parameter.)
    Method 2: It is a general method to add parameter in SSRS report.
     Create another dataset (DataSet2) in the report fill with Title field.
    Add a parameter (Title) get available values from DataSet2 Title field.
    Add filter in the DataSet1.
    (Note: This method, we can configure multi-values parameter.)
    Reference:
    http://technet.microsoft.com/en-us/library/aa337432(v=sql.105).aspx
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • 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.

  • Implementing SQL Server Reporting Services with a Java EE Application

    Hi All,
    I need to find some tutorial on
    "Implementing SQL Server Reporting Services with a Java EE Application"
    for my j2EE application.
    Until now i have searched a lot of sites but have not any thing related to this topic.
    I am using apache axis along with SQL Server Report Manager for creating the sql server reports.
    I have done upto :
    Creating the webservice with the help of report manager.
    Now i want to connect it through my j2EE application and want to retrieve some data from that web service.
    I have got stuck on the following BOLD lines in my code .
    code:
    public CatalogItem[] getData(String res, String searchStr) throws RemoteException     {
                  ReportingService2005Soap port = null;
                  ReportingService2005Locator loc = new ReportingService2005Locator();
                  // Retrieve a port from the service locator
                  try {
                       port = loc.getReportingService2005Soap(new java.net.URL(res));
                  } catch (MalformedURLException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  } catch (ServiceException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  org.apache.axis.client.Stub stub = (org.apache.axis.client.Stub) port;
                  stub.setUsername("localhost\\Administrator");
                  stub.setPassword("servWIN@2007");
                  // Retrieve a port from the service locator
                  SearchCondition condition = new SearchCondition();
                  condition.setCondition(ConditionEnum.Contains);
                  condition.setName("Name");
                  if (searchStr != null)
                  condition.setValue(searchStr);
                  else
                  condition.setValue("");
        //           Create an array of SearchConditions which will contain our single search condition
                  SearchCondition[] conditions;
                  conditions = new SearchCondition[1];
                  conditions[0] = condition;
        //           Call the Web service with the appropriate CatalogItem[] returnedItems;
                  CatalogItem[] returnedItems = null;
                  port.findItems("foldername",BooleanOperatorEnum.Or, conditions);
                  return returnedItems;
             }i.e. while executing the findItems() method i got the following exception :
    System.Web.Services.Protocols.SoapException: The item '/reportingservices' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/reportingservices' cannot be found.
    at Microsoft.ReportingServices.Library.RSService.FindItems(String folder, String operation, SearchCondition[] properties)
    at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.FindItems(String Folder, BooleanOperatorEnum BooleanOperator, SearchCondition[] Conditions, CatalogItem[]& Items)
    Any any body has any idea please help me.
    I need it urgently.
    Regards.

    The above example is mentioned in msdn virtual lab that teaches how to connect to reporting services from a j2ee application.
    I have done the same thing .. but i am not able to render the report programmatically .. if anybody knows pls let me know the solution.

  • Using SQL reporting services with java

    how can i use Microsoft SQL Server reporting services with java? The idea is that we create the reports using Microsoft SQL Server reporting services. Then we have our web application where user will select one of those report, pass 0 or more arguments and then we will show the report.

    nobody is using Microsoft SQL Server reporting
    services with java?Found this in 0.01 seconds with Google http://www.javaworld.com/javaworld/jw-01-2005/jw-0110-sqlrs.html
    Handy tool that Google.

  • Integrating Microsoft Reporting Service with SAP running on SQL Server 2K5

    Hi All,
    I am new to SAP R3 and I need the help for Integrating Microsoft Business Intelligence Report Services with SAP R3 4.6 C running on SQL Server 2005? Also how Biztalk Adapter is use full for this process?
    Thanks in Advance

    Hello Madhav,
    you might want to post this to the "SAP on Windows" forum as well.
    Regards,
    Marc
    SAP Techology RIG

  • Where is the forum for Fusion Report Service with Oracle Reports?

    Where is the forum for Fusion Report Service with Oracle Reports?

    You could try this one, maybe post your question.

  • Installing Forms&Report  Services with Oracle Application Server 10g Rel 3

    Can I Install Forms & Report Services with Oracle Application Server 10g Release 3 some how?
    I am thinking of installing Forms & Reports Services in separate home with Oracle Application Server 10g Rel 3.
    Does any body has any different idea so that they both can run more smoothly together.
    Thanks
    Raj
    www.oraclebrains.com

    They WILL NOT RUN TOGETHER. We have discussed this many times before. They must be in separate homes.
    Check the search function for this forum to find the previous discussions.

  • Unable to access Runtime Services with admin user

    Hi all,
    Trying to access runtime services with admin user returns a "Authentication Denied
    The username or password has been refused by Runtime Services. Please try again."
    Credentials are correct. It seems to be some kind of lockout. I´ve copied this admin user entry in ldap and named it admin2, this "new" user can perfectly log.
    As it could be a lockout I have unlocked the user although the proper tab said there was no locked user.
    The realm is in a openldap.
    Any hint would really be appreciated.

    Hi all,
    Trying to access runtime services with admin user returns a "Authentication Denied
    The username or password has been refused by Runtime Services. Please try again."
    Credentials are correct. It seems to be some kind of lockout. I´ve copied this admin user entry in ldap and named it admin2, this "new" user can perfectly log.
    As it could be a lockout I have unlocked the user although the proper tab said there was no locked user.
    The realm is in a openldap.
    Any hint would really be appreciated.

  • Services with multiple account assignment.

    Hi all,
    How can I find out the POs which are having the multiple account assignment for the service line items from tables ?
    I am looking for services with multiple account assignments
    Regards

    Hi
    Go to SE16 , give table name -EKPO
    Now if you have purchase order nos with you then copy paste the PO numbers here , or select company code or site to restrict your entries. It will control the performance of the data execution.
    Then execute this (remove max no 200 ) . Go to Settings-- Format List -- Choose fields. Deselect all and select fields as per your requirement.If field names are coming in technical names you can change this via settings--User parameter and select -Field Label.
    You can extract this report to excel as well. Same PO number with all account assignment category.
    Please note if you have high volume of data then extract all the POs under service orders first from EKKO table and copy all the service PO numbers availbvale and paste in table EKPO, it will increase performance as well.
    Cheers
    Mukta

  • Reporting Services with out national character after export to PDF

    I have problem with exported report to PDF(sended by job)on some devices(pc, mobile, tablets),i dont see any text correctly, only undefinied symbols, problem only exists on exported reports, on SSRS by WEB looks correctly, 
    WIN 2008 R2 (eng)
    SQL 2008 (eng)
    Region: Poland.

    Hello,
    According to your description, it is contains non-English characters in your report. This problem occurs because the glyph IDs for some non-English characters have changed in some font files.
    In Cumulative Update #1 for SQL Server 2008 is automatic full font embedding and subsetting for Unicode characters in Reporting Services 2008 PDF rendering. Please update SSRS 2008 to SSRS 2008 CU1 to resolve the issue.
    There is a KB article about Incorrect characters appear in a SQL Server Reporting Services report after you export it to a PDF file, you can refer to it.
    http://support.microsoft.com/kb/955495
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Unable to see option interactive

    hello all,
    i am unable to see the option interactive, in web intelligence options for select view format and also the select a report panel is missing in the web intelligence document preferences.
    i am using BO XI r2.
    thanks

    You can check in CMC-> Applications if the interactive options have been provided for your user.

  • Unable to insert sql server reporting services report viewer webpart

    Hello,
    We are trying to add a SQL Server Reporting Services Report Viewer and when we click add we get the following error message
    The file you imported is not valid. Verify that the file is a Web Part description file (*.webpart or *.dwp) and that it contains well-formed XML.
    Does anyone know what the fix to this is?

    Hi,
    The Report Viewer Web Part is a custom Web Part that is installed by the Reporting Services Add-in for SharePoint Products and associated with report definition (.rdl) files that are processed by a Microsoft SQL Server Reporting Services report
    server.
    To install the Web Part, you must run Setup for the Reporting Services Add-in. You should not install or uninstall the Web Part independently. It is part of the add-in and can only be installed through the add-in setup package. The Report Viewer Web Part
    file name is ReportViewer.dwp. It is located in the Program Files\Common Files\Microsoft Shared\web server extensions\15\template\features\reportserver folder and should not be moved to other folders.
    To use the Web Part, you must have installed and configured the Reporting Services Add-in and configured the report server for SharePoint integration.
    For more information,you can have a look at the blog:
    http://msdn.microsoft.com/en-us/library/jj219068.aspx
    http://msdn.microsoft.com/en-us/library/aa905871.aspx
    http://msdn.microsoft.com/en-us/library/bb522800.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • SQL Reporting Services with Visual Studio 2012

    Hi
    I would like to know if there will be any release to improve on the placeholder feature in SQL reporting services. Currently, I have users who uses HTML editor to input data and tables. However, the table in html format cannot be read.
    I do understand that currently the placeholder feature can only have limited html tag recognised. However, is there any plan to improve it so that <table> tag can also be recognise?
    Or if there is any workaround to show the table format in the reports?
    Sorry but this is urgent as it is used for business application.
    Many thanks

    Hi DotNeTEngineeR,
    According to description, you want to display the content of table tag (<tag>) in a report. Right?
    In Reporting Services, it only has the supported HTML Tags below:
    Hyperlinks: <A HREF>
    Fonts: <FONT>
    Header, style and block elements: <H{n}>, <DIV>, <SPAN>,<P>, <DIV>, <LI>, <HN>
    Text format: <B>, <I>, <U>, <S>
    List handling: <OL>, <UL>, <LI>
    For your requirement, we suggest you use <div> to replace <table> tags in your embedded HTML. Please see the article below:
    Embedded HTML using <div> to replace <table> tags in ssrs 2008
    Reference:
    Importing HTML into a Report (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • Media encoder cc pauses  while I edit in premiere cc!

    If I try editing in premiere cc while encoding in media encoder cc, the encode pauses. what gives?

  • Can't see Video on iPhone in iPhoto

    I have transferred a 16 minute video shot on my iPad onto my iPhone 6 (via Airdrop). I now wish to transfer it from my iPhone onto my iMac, using iPhoto. However the video, is not showing up as being on my iPhone under iPhoto! Can someone please exla

  • AIR iOS app fails uploading to Apple (iTunes Connect)

    I've been trying to upload my iOS app to iTunes Connect via Application Loader but it fails every single time. I'm getting the following error(s); 'Unable to run the lipo command: ... Can't map input file ...' and 'Application failed codesign verific

  • Strange VLAN issue on aironet access points

    I'm setting up some access points for WPA. I've ran into a strange issue. The client VLAN (VLAN that the users will be put into) is 1, and the native VLAN is 10. The RADIUS server is in VLAN 1 (but I have a test RADIUS server in VLAN 10 as well). I c

  • Use iMac 21" as screen for Vista PC

    Hi everyone, I recently purchased a new iMac 21" all in one unit. However I still have my Vista machine, and would prefer to keep both machines going. Is there a way where I can use the iMac screen for the Vista machine. I know I will most likely nee