Open SSRS report link in browser

Hi,
I have developed 3 SSRS report. these report contains quality and production updates. These report will be using as visual display dashboard in production area and will be view/flash in LCD  monitor.
My requirements is how can i open the SSRS link using an script and put a time to perform the next SSRS link.  Or it possible to use  IE9 as browser and open the SSRS link. any idea guys is very much appreciated. thank
you. 
Jon

Hi Jon,
Just as BI_group and Vishal said, there are two methods to open another report from one report in Reporting Services. We can enable an action with “Go to report” or “Go to URL” option to achieve the requirement. For more details, please see:
Method1: Go to report
Right-click a report item to open the properties dialog in main report, click Action in the left pane.
Enable Go to report action, then select the main report name in the drop-down list.
If we want to pass some parameters from main report to subreport, we can Add a parameter as below:
Select ID (a parameter name from subreport) in the drop-down list of Name, and select [ID] (a field name from main report) in the drop-down list of Value.
Method2: Go to URL
Right-click a report item to open the properties dialog in main report, click Action in the left pane.
Enable Go to URL action, the URL below is for your reference:
="javascript:void(window.open('http://server_name/ReportServer/Pages/ReportViewer.aspx?%2ffolder_name%2fsubreport_name&rs:Command=Render&parameter_name="&Fields!field_name.Value &"'))"
For more information about Drillthrough, Drilldown, Subreports, and Nested Data Regions (Report Builder and SSRS), please refer to the following document:
http://msdn.microsoft.com/en-us/library/dd207141.aspx
If there are any other questions, please feel free to ask.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Display Disclaimer message before opening SSRS report

    Hello,
    I have a requirement to display a disclaimer message before going to the content of a particular report.
    The workflow would be:
    go to report folder e.g. Reports/Pages/Folder.aspx?ItemPath=%2fMyFolder%2fReports&ViewMode=List
    Click on Report x
    Display Disclaimer
    Press 'ok' on disclaimer
    Continue to report
    This is SSRS 2012 native.
    I had contemplated injecting JavaScript into the report, but this appears virtually impossible to do i a simple manner.
    I am stumped as best to how to proceed.
    Regards,
    MrHH

    Hi MrHH,
    Per my understanding that you want to display an popup window(disclaimer message) before display the report.
    I have tested on my local environment and that we have two method to help you do this.
    Method one is simple and more easy to add this action to a special report":
    you can create an new report with the information of the disclaimer and add two textbox(Agree,Disagree) perform as the two button, then add "go to report" action for the two buttons, when click "Agree" link to the particular report,
    if click on "disagree" will just refresh on this discalimer report.
    Note: you need to deploy both the disclaimer report and the particular report to the report server, and when you click on the disclaimer report you will got the display result you want.
    Method two:
    This method is not that simple, i will give you some sample data to get the popup windows display before you can see the particular report, when you click  the particular report you will get the popup window display with two buttons "Agree"
    and "Disagree", when you click the "Agree" you will see the report content, when you click "Disagree" you will link back to the home page of the report manager.
    Detail information below for your reference:
     Add some code in the report.aspx file in the path similar to this:
    C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\Pages\Report.aspx
    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
    <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    $(function() {
    $("#dialog").dialog({
    title: "jQuery Dialog Popup",
    height: "200",
    modal: true ,
    buttons: {
    "Agree": {
    text: "Agree",
    id: "my-button-id1",
    click: function() {
    $(this).dialog('close');
    document.getElementById("bg").style.display = "none";
    "Disagree": {
    text: "Disagree",
    id: "my-button-id2",
    click: function() {
    location.href = '/Reports'
    </script>
    <div id="bg" style="width:100%; height:100%;z-index:20000;background-color:silver" >
    <div id="dialog" style="display: none;z-index:20001">
    Please make sure you have read this information and understand clearly before enter the report.
    </div>
    </div>
    Note: this sample code now works for all the report in the report manager, you can improve the code by add url to make it just work on the particular report.
    2. Restart the Report Server instance in the Reporting Service Configuration manager and then open the report manager to have a test.
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • Issue while opening SSRS Report with Oracle as Datasource in Report Manager

    I deployed SSRS report in Report Manager but I am unable to generate that report. Am getting following error.
    Is it problem with datasource in report manager? I am not able to change the Data source type to Oracle. It is showing Microsoft SQL Server. How can I change it, no other options are coming except Microsoft SQL Server. Please help.
    An
    error has occurred during report processing. (rsProcessingAborted)
    Cannot
    create a connection to data source 'TEST_DS'. (rsErrorOpeningConnection)
    For
    more information about this error navigate to the report server on the local
    server machine, or enable remote errors

     When I deploy them in localhost, and try to run report in report manager, it is not showing any data source type in drop down list except MS SQL Server. I do not know why it is showing in BIDS and not in report manager!!!
    Hello,
    Based on my test, I can specify the data source type as Oracle after deploy the report to Report Manager and open the report Data source propertity page. If the report use the shared data source, you should check the specify data source at the Data Source
    folder. Please refer to the following screen shot:
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Open Jasper Report on IE Browser

    Hi,
    I have used the following code techniques to open the Jasper Report on IE Browser.But It is not opened on IE,But opened on seperate form window.
    Frame Work: Struts 1.1
    <%
    // geting jasper print object from Action Class
    JasperPrint print= (JasperPrint)request.getAttribute("jasperprint");
    //view the jasper report using JasperViewer class with viewReport method
    JasperViewer.viewReport(print,false);
    %>
    It is worked properly .But I want to display this report on IE Browser.
    any one know this ,Please help me.

    Hi,
    I have used the following code techniques to open the Jasper Report on IE Browser.But It is not opened on IE,But opened on seperate form window.
    Frame Work: Struts 1.1
    <%
    // geting jasper print object from Action Class
    JasperPrint print= (JasperPrint)request.getAttribute("jasperprint");
    //view the jasper report using JasperViewer class with viewReport method
    JasperViewer.viewReport(print,false);
    %>
    It is worked properly .But I want to display this report on IE Browser.
    any one know this ,Please help me.

  • Printing Blank pages for SSRS Reports in Firefox browser

    I have created an SSRS Report that works well on chrome, but when I use the site in Firefox the SSRS Page prints blank pages though the report displays properly. I have tried every thing like reducing table width. I am using the report viewer control.
    Sanjeev Menon

    Hi Sanjeev,
    Generally, if the report display properly in the browser, it should be also work well when we print the report. And I can’t reproduce the scenario in my own environment. As to this issue, I recommend that you can try to run it in compatibility mode or use
    IE explorer to print the report.
    If this issue still exists, please try to update the report viewer control to latest release and check this issue again.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Open discoverer report in new browser window and without connections page

    Hi All,
    We are using Oracle 11g Discoverer 11.1.1.4.  Requirement is to open the discoverer report in a new browser window and without connections page.
    When we are running discoverer reports with this parameters we unwantedly get the connections page of the discoverer plus which we don't want.
    Went through the documentation given in this page and followed it still the issue persists, and i see couple of threads with my issue and no updates.
    This excerpt is from the documentation available in the link
    " _plus_popup=true and framedisplaystyle=embedded launches Discoverer Plus in a new pop-up browser window that contains the Plus applet embedded in it "
    http://www.art2dec.com/documentation/docs/oas10g1012/linux/bi.1012/b13918/urlstart.htm
    and Here is what we use to invoke our reports.
    http://ipaddress:port/discoverer/plus?cn=cf_123&_plus_popup=TRUE&framedisplaystyle=EMBEDDED&wb=disc_wb_1
    Request the forum users from PRO discoverer group to help me out of this issue and expect a good discussion on this.
    Thanks in advance

    Closing the thread
    We were able to achieve by changing the browser settings in the IE 8 Browser. Disabled Tabbed browsing.

  • How to track the flow of Sharepoint SSRS report requests to troubleshoot slowness

    How to track the flow of requests of Integrated SSRS report links in Sharepoint.
    We are using SSRS with Sharepoint for reporting purpose. The issue is some of the reports get generated fast and some other reports generation is very slow. When the sql query of these reports RDL file is executed, the records are shown fast.
    Also even on clicking the "Add Subscription" link of "Manage Subscriptions" of a report is very slow for some reports, while it is fast for other reports.
    I tried enabling SQL profiler to track the requests.  I have checked profiler log for the SQL statements with exec sp_executesql. But they are not helpful.
    Pls advice on how to track the request of flow of SSRS report request in sharepoint and how to troubleshoot the slowness in  "Add Subscription" link, response of some reports.

    Hi Pradeesh,
    According to your description, my understanding is that you want to track SharePoint SSRS report requests to troubleshoot the performance.
    Developer dashboard is very help full while troubleshooting the issues related to performance in SharePoint 2013.  You can have a try.
    About Developer dashboard, you can refer to the links:
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    http://msdn.microsoft.com/en-us/library/office/ff512745(v=office.14).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Reports are blank when opened from Reports Server

    I have created a report project in Visual Studio 2013 and deployed a test report to the local reports server (SSRS 2012).
    When I preview the report from visual studio it opens well, but when I try opening it from Report Server URL, I can see the report viewer toolbar but once I click "View Report" it shows "Loading" and then a blank page appears.
    I then tried to delete the datasource, datasets and delete any report contents and just keep the title, still a blank page is the only thing that appears

    Hi SB User,
    According to your description, when you run the report, it displays a blank page.
    Based on my research, it has reported the same issue when running the report in Chrome and Safari browsers. If that is a case, you can add the code below to ReportingServices.js file.
    //Fix to allow Chrome to display SSRS Reports
    function pageLoad() {
    var element = document.getElementById("ctl31_ctl09");
    if (element)
    element.style.overflow = "visible";
    Reference:
    Google chrome opens blank pages when open SSRS Reports
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Open PDF File from Link on SSRS Report REDUX

    Revisiting an earlier post here, because a solution is revealed. 
    The string below, when entered into the "Jump to URL" value on the Navigation tab for Textbox properties, works IN A REPORT PUBLISHED to a Report Server.  This would NOT work in the Visual Studio project on my desktop.
    ="
    FILE:\\somehost.com\SomeFolder\SomPDF.pdf"
    Unfortunately, it opens the PDF file on the same browser tab as the SSRS report that contains the link to the file. 
    Can anyone please suggest an alternative construction for the string that would force the file to open in either a new browser window or a new tab in the current window?

    How about trying this
    =
    "javascript:void(window.open('FILE:\\somehost.com\SomeFolder\SomPDF.pdf'))"

  • Open link in browser

    Hi Experts,
    I want to open a link in browser through SAP code. The report has to be scheduled in background.
    Is there any function module to do the same?
    Thanks in advance.
    Supriya.

    hi ,
    I am passing the link to which asks u to enter the cell number and text message. once u click on send the msg will be sent to the number provided. Its working fine manually. Now i used the FM to send the mail I scheduled report in background. The report is executing succesfully but sms is not being sent.
    Please help.
    Supriya.

  • Open a PDF File from a SSRS Report

    I have a requirement to include a link of some sort on SSRS reports that opens a PDF file.  If this were being implemented in an Access report, a click event using the Application.FollowHyperlink method will do the trick.  Is there an analogous
    method to accomplish this on a SSRS report, please?

    Thanks to Bipin.P !  Although I do not yet have the product installed with which to work, I found the following in the RDL specs.  So, if SSRS functionality is identical to that of an IsHyperlink textbox, our requirement will be satisfied
    easily. 
    Thanks again to all!
    From the SQL Server Reporting Services RDL (Report Definition Language) Specification document, page 41:
    Action
    The Action element defines a hyperlink, bookmark link or drillthrough action associated with a ReportItem.
    Name
    Type
    Description
    Hyperlink
    Expression (URL)
    An expression that evaluates to the URL of the hyperlink (18)
    (18) The Access IsHyperlink property of Textboxes will be supported via this more general mechanism. The Hyperlink property of the Textbox can be set to the same expression as
    the Value property of the Textbox.
    Implemented on an Access Report on 05/06/2010:
    Set the IsHyperlink property of a Textbox to Yes              
    Set the Value property of the Textbox to =”Open PDF File#C:\UPDATES\HelpFiles\UIU Boot Menu.pdf”

  • Link from SSRS Report to a Project Gantt, Focusing on a Task

    Hi,
    We are using Server 2010 SP 2 (and considering moving to 2013).
    We have an SSRS grid report in which each row relates to a task in a project on the server.
    We would like to add to each row in the report a link that will open the project and focus on the relevant task. The project can be opened either in Professional, Project Center or Project Site (any will
    satisfy, as long as the user sees the task in a Gantt context).
    Is this possible in 2010? Is this possible in 2013?
    Thanks,
    Barak

    Hi, 
    you can easily create a hyper link to project site of that particular project, but unfortunately you are limited to redirect to that project's particular schedule PDP only not to your desire view.
    so once the user will click on link, he/she will be redirected to project site's view which they have opened last time as PS always opens the last view in-use by the user. so there is chance that instead of task related view, they may see resource/assignment
    etc etc view.
    If above is OK with you then great, simply create a ssrs column to redirect to something similar like this: http://<server-name>/<PWA-Instance>project detail pages/schedule.aspx?projuid=<projduid>
    in case above is not satisfactory, then you may need to create another ssrs report to be accessed from that parent report to show you your required results. but then it wont be a gantt view, instead you can show another tabular/graphics report to show required
    data.
    so basically its a trade-off between options :)
    hope this helps.
    Khurram Jamshed - MBA, PMP, MCTS, MCITP (
    Blog, Twitter, Linkedin )
    If you found this post helpful, please “Vote as Helpful”. If it answered your question, please “Mark as Answer”.

  • SSRS How to grant BROWSE permission for reports for all the application users?

    Hello,
    Problem Statement
    I need to allow all of my application users to browse the SSRS reports via logging onto the Report Manager and to some other I even want them to use Report Builder to modify & upload the report.
    How could I achieve this.
    Environment & Current implementation
    We use SQL Server 2012 reporting services.
    Custom authentication has been implemented using IAuthenticationExtension Interface. For more details, please refer
    this msdn link.
    Currently, for each new user created in the application, the admin has to manually give BROWSER role to the username to enable that newly created user to browse the reports.
    Is there any way in which we can give "everyone" the BROWSE permission and get rid of this manual permission granting process?
    Please feel free to ask for any additional information you need to help me on this issue.
    Thanks!
    -Vinay Pugalia
    If a post answers your question, please click "Mark As Answer" on that post or
    "Vote as Helpful".
    Web : Inkey Solutions
    Blog : My Blog
    Email : Vinay Pugalia

    Hi vinaypugalia,
    According to your description, you want to grant permissions for users to access report server in a batch, right?
    In your scenario, you can use
    script files( AddItemSecurity.rss and ConfigureSystemProperties.rss )with the Reporting Services SOAP API to assign permissions. It’s better that you add those users to a user group then run those script.
    Similar thread for your reference:
    SQL script to grant user permissions for SQL Server Reporting Services
    Programmatically adding users to SSRS?
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Webi report link to other webi report opening blank page

    I have put the hyperlink to link to the other webi report. But once I click on the links. It open the report with blank page. I have tried it in View mode or Edit mode, the browser will open up another blank page. Following is my links:
    <a href="http://server_name:28080/OpenDocument/opendoc/openDocument.jsp?sType=wid&sRefresh=Y&sWindow=Same" title="Page1" nav="web">Link to Page2</a>
    any advice? Thanks

    http://server_name:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=AciEzxbPmxdHtQwnB4RHaCo&sType=wid&sIDType=CUID&sWindow=New
    Make sure the followings:
    1. The webserver runs at port 8080 (if not, use the correct port)
    2. the CUID is correctly copied.
    3. the target report here is a webi report. (sType=wid)
    4. the server name is correctly mentioned.
    5. you are using JAVA environment.
    If still this does not work, then please let us know :
    Are you getting any error? if yes, what error you are getting.?

  • How to open reports in same portlet when clicked on item report links in menu portlet

    Hi,
    I am not sure what forum I should ask this question. Anyway, I am trying in the content areas forum.
    Let me explain what I trying to do.
    I have reports links as menu item links in a menu. I have published this menu to portal and added it to a page. I can now see the report links. If I now click on the report link, it opens the report in a whole window. How do I open the report in the same portlet or if this is not possible, how do I open this in a different portlet on the same page ?
    thanks for helping.
    Mainak

    Hi,
    This is part of JPDK. You will have to install it. Which version of portal are you using? You can also try this out using
    URL portlet which is available with webview in 309.
    Thanks,
    Sharmila

Maybe you are looking for

  • How do I clear Google search history?

    Using Safari 7.0.3 on MacBookPro. Recently upgraded to OSX 10.9.3 Comined address and search bar. It's annoying to see past search results as I'm secretly planning a trip with my husband and he's starting to notice my hotel queries...

  • Please my password for hp mini

    My error code is  cnu93725h9 Please  password This question was solved. View Solution.

  • What product do I need to create personal eBooks?

    Google Books has suggested I generate my own ePub files from PDFs, but I'm not sure what product will do this. I am only converting my own materials, so this is a personal application, not corporate or group. Anything (dare I hope for it) free? thank

  • [SOLVED] Window colors and the .Xdefaults file.

    Normally I use a very lightweight x11 setup on my system (ratpoison+a few applications like firefox), but recently I have been experimenting with some more unnecessary eye-candy on an usb memory (beryl and kde... nice:cool:), and after using the colo

  • Creating Network Bridge in Windows 7 on wired port causes cable unplugged

    So I created a Microsoft Loopback interface and tried to create a Network Bridge in Windows 7 with the wired Ethernet port on my E7440 laptop.  But once the bridge is created and the interfaces added, the Ethernet port says 'cable unplugged'.  If I t