Globals!RenderFormat alternative for SSRS 2008

In SSRS 2008 R2 there is Globals!RenderFormat variable that can be used to control appearance when exporting to different formats.
Is there something similar in SSRS 2008? Specifically I am interested in conditional TextDecoration (I would like it to be Underline when report is viewed in the browser (clickable report bookmark) or None if exported to PDF)

Hi,
According to your description, you want to set conditional TextDecoration when export report to different formats.
In Reporting Services 2008, we don't have Render Format Name Built-In Field to recognize the render formats. Then we can use parameter with conditional expression to control the visibility of underline. For more details, please refer to the following steps
to achieve your goal:
Create a parameter, in the Name and Prompt text box, type Type.
Click Available Values, and add available values: Default, Pdf.
Click Default Values, and add the default value: Default.
In Text Box Properties dialog box, click Font, in the Effects Expression text box, type the following expression:
=IIf(Parameters!Type.Value="Default","Underline","Default")
Then we can select a type to control its appearance before exporting the report.
The following screenshot is for your reference:
If you have any more questions, please feel free to ask.
Thanks,
Wendy Fu

Similar Messages

  • Word Header and footer margin is reset to 0 when exported from SSRS 2008 R2

    Hi,
    I am using SSRS 2008 R2 to create reports. While exporting to Word format, the Header and the Footer margins are getting reset to Zero  and the user has to manually adjust the margins to get the right print. (While Printing, some portion of the
    Header is getting chopped off.). Export to PDF and Excel is fine.
    Please help and let me know if there is a solution to this ? or any service packa availalbe for SSRS 2008 R2 , that can fix this issue.
    Thanks,Poonam

    Hi Poonam,
    Word and SQL Server Reporting Services (SSRS) treat page headers and footers differently. Word actually positions them inside the page margins, whereas SSRS positions them inside the area that the margins surround. As a result, in Word, the page margins
    do not control the distance between the top edge of the page and that of the page header.
    So when exporting report to word, the page header begin from the top edge. However, in Word there are white spaces preserved from the top edge by default. So some portion of the Header is getting chopped off when printing.
    In this case, one way to avoid this issue is using the “From edge” property in Word. Click “Page Setup” in the Print window and then click “Layout” tab, then set the “From edge” property value. The screenshot below is for your reference:
    Another way to avoid this issue is keep some white spaces from the top edge in SSRS. The screenshot below is for your reference:
    If you have any questions, please feel free to ask.. We appreciate your comprehension.
    Regards,
    Charlie Liao

  • Ssrs 2008 r2 use parameters for sorting purposes

    In an ssrs 2008 r2 report, I have a report where a user wants to sort a report based upon the following parameters:
       1. lastName,
       2. firstName, 
       3. studentNumber,
       4. [School Name].
    The above is the default order of how the user wants to be able to sort the report.
    The following is the definition and the columns that are to appear in the report:
             studentNumber varchar(15)
     ,lastName varchar(40)
     ,firstName varchar(35)
     ,[School Name]  varchar(40)
     ,[School of Assignment] CHAR(3)
     ,grade varchar(4)
     , Description varchar(50)
     ,[Beginning Date] smalldatetime
    The above columns are all contained in one tablix.
    The user wants to be able to sort the report by changing the parameters that I just listed
    above.
    Thus can you show me code and/or point me to a url that would show me how to allow the user to sort
    the report in any order based upon the 4 parameters listed above?

    The interactive sort is not what the user wants. The user wants to be able to change the default sort order by using a sort parameter value.
    I know that the tablix and the detail rows of a report have a sort option. I want to be able to connect, the sort parameter values with the tablix sort. I have seen on the internet where each sort parameter value can be represented with a number value.
    I don't  care what is easier, I want to do what the user is requesting. Thus can you show me code on how to accomplish this goal?
    Ok. I just gave you a better option
    If you still want it to be based on parameters you can add one more parameter to your report called SortBy with values of your fields. Then inside sor expresson for your tablix use an expression like
    =Fields(Parameters!SortOrder.Value).Value
    and it will automtically sort based on field you choose from parameter
    Only thing you need to make sure is that values given for SortBy parameter combo should be exactly same as your field names used in your report dataset.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Ssrs 2008 'select all' option to be selected for a parameter

    In a new ssrs 2008 report, the problem is all reports are not selected from the parameter called 'report' when the report runs automatically.  When the report executes, there is nothing displayed in the parameter selection  dropdown box. The user
    has to click the down arrow to select which reports they want to execute.
    Here is the siutation for the ssrs 2008 report:
    In a new SSRS 2008 report, I want to be able to allow the user to select which report they  would like to see generated by selecting the report name from a dropdown list. This is a multi-valued parameter and the parameter name is called 'report'. I
    would like the default value to be for all 5 reports to be selected.
    All 5 reports will be on the 'main' report. There will be no subreports. Each report will have its own unique matrix and the matrix will be visibile based upon what is selected in the parameter called 'report'.
    My question is how can I make the 'default' value for the parameter called 'report' have all the reports selected?
     Normally to get all multivalued parameter values selected you create a dataset and run a query against a table. However in this case, there is no table to query. The user just selects what report(s) they want executed.
    Here is the code that is used:
    1.Right-click the multiple parameter ‘repot’ to open the Properties dialog box.
    2.Specify the values below in the Available values:
     Label: report1                                                
    Value: report1
     Label: report2                                                
    Value: report2
     Label: report3                                                
    Value: report3
     Label: report4                                                
    Value: report4
     Label: report5                                                
    Value: report5
    3.Specify the values below as the Default Values:
     report1   report2   report3   report4   report5
    4.Right-click the ‘report1’ to open the Tablix Properties dialog box.
    5.Select Visibility in the left pane, type the expression below in the “Show or hide based on an expression” textbox:
     =iif(InStr(join(Parameters!report.Value,","),"report1")>0,false,true)
    6.Use the expressions below to control the visibility of the ‘report2’, ‘report3’, ‘report4’, ’report5’:
     =iif(InStr(join(Parameters!report.Value,","),"report2")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report3")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report4")>0,false,true)
     =iif(InStr(join(Parameters!report.Value,","),"report5")>0,false,true)
    Thus can you tell me how all values from the 'report' parameter can be selected automatically  when the ssrs report is executed?

    Pass default value as below and see
    =Split("Report1,Report2,Report3,Report4,Report5",",")
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Not being asked for credentials in SSRS 2008 R2 for Firefox and Safari

    I have an instance of SSRS 2008 that is currently working on all browsers (the URL is something like reports.foo/reports).
    I spun up a new instance of SSRS and placed it on the url report01.foo/reports.  This new instance is connected to a different domain (I am spining up a Active Directory Domain and trying to build out our infrastructure, so the logins are different). 
    I am able to access the new URL (report01.foo/reports) from IE and Chrome.  It is asking for the username/password and able to get on just fine.
    However, when I try to go to the new URL (report01.foo/reports) using Safari and Firefox, it never asks for credentials and shows a blank page.  This does not happen for the old URL (reports.foo/reports), only the new URL.
    Any ideas?

    Hi Ben,
    Per my understanding that you have configured windows authentication and which by default will not prompt for credential. So I assumed you have changed the User Authentication setting in the security setting to pop up for credential, for example like below(IE),
    If so, your issue about the pop up credetial not pop up in Firefox and Safari can be caused by the related security setting, If you give Anonymous User rights, you may got the blank page:
    Details information about similar issue in threads below for your reference:
    how to change reporting service site seurity setting?
    SSRS in firefox not asking for credentials
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • SSRS 2008 R2 - Column Headers of a tablix visible while scrolling - Then the column headers not visible on 2nd page onwards for PDF EXPORT. it's vice versa. Hence it is possible to provide both at same time ?

    Hi,
    I am using SSRS 2008 R2.
    I have two TABLIX in a report.  One is TABLIX with row/clumn grouping. 2nd one is flat view.
    Here each tablix is dispaly it's data on single page for each.
    My Requirement on First TABLIX is:
         1. I have to make column headers visible on scrolling down
         2. Export to PDF - column headers must be visible on all the pdf pages  for same tablix data.
    But ... either one is achieved at my end.
    so ... any suggestions please to achieve both at same time.
    thank you in advance.
    best regards,
    venkat.

    Hi G.V.Naidu,
    According to your description, the first tablix is matrix to use display data.
    In SSRS, if we want to fix matrix header visible while scrolling and repeat header columns on each page, we can select the corresponding option to enable this function. Please refer to the steps below:
    1. Right click tablix, and select Tablix Properties.
    2. Select “Keep header visible while scrolling” and “Repeat header rows on each page” to enable these function.
    If we are use table to display data, please refer to the article about Repeat Header / Keep Header Visible in Tables.
    http://blogs.msdn.com/b/robertbruckner/archive/2008/10/13/repeat-header-and-visible-fixed-header-table.aspx
    If there are any misunderstanding, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Ssrs 2008 r2 use 'Globals!ReportServerUrl in url

    In a SSRS 2008 R2 report, I am able to have the users open a pdf document in a new window by using the following code in the action field of a textbox property:
    ="javascript:void(window.open('http://test1.op.org/ReportServer/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))".
    My goal is not to hard code the url path. I would like the url path to be dynamic based upon which report server the ssrs report is running from.
    Basically I would like to replace the
    http://test1.op.org/ReportServer with the Globals!ReportServerUrl variable that report server has a available.
    I would like to replace the above expression with the following:
    ="javascript:void(window.open('Globals!ReportServerUrl/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))". However this expression does not work.
    Thus can you tell me how to use the Globals!ReportServerUrl ssrs item with the javasctript window open statement so that the expression works correctly?

    Hi Wendy,
    If we are put Globals!ReportServerUrl expression in the “”, in Reporting Services, it will recognize it as a string data. So, it cannot display as report server URL.
    Please refer to the following expression:
    = Globals!ReportServerUrl & “/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf”
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Prompting for UserName and Password when I click Report Server Web Service URLs in ssrs 2008 R2

    Hi All,
                 I am using SQL Server Reporting services 2008 R2 . When I tried to open report server webservice URL in SSRS 2008 R2 It is prompting username and password. I tried to resolve the issue by deleting the <!--
    <RSWindowsNegotiate/> --> line in rsreportserver.config but still I am getting the same prompt
    and i tried by putting the server URL in trusted sites in IE also still no luck. I referred the below link 'http://blogs.msdn.com/b/lukaszp/archive/2008/03/26/solving-the-reporting-services-login-issue-in-the-february-ctp-of-sql-server-2008.aspx'
    I am getting the same error.
    Can anyone help me out to resolve this issue easily.
    Thanks
    Dathy

    Hi Dathy,
    Generally, this is a very common issue in Reporting Services 2008 R2, the blog you post is a good blog that summary the common solutions. If it doesn’t help, could you please try the following:
    Open Internet Explorer, go to Tools and click on Internet Options.
    Under the Security tab, click on Trusted sites and click the Sites button and Add Report Manager/Report Server URL to the trusted sites.
    Then click Custom Level, and check the option Automatic logon with current user name and password.
    Repeat step 3 and step 4 for Local Intranet.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Hide a TextBox for CSV extract in SSRS 2008

    Hi,
            I have a requirement to hide a textbox in the csv extract of SSRS report built on 2008. I understand it is easily achievable in 2008 R2 with the help of globals!, but I have to unfortunately achieve it in SSRS 2008.
    Any expert advice.

    Hi MTiwari,
    As far as I know, it have no approach to work around the issue.
    In SSRS version before 2008R2, if we want to hide text box when we export to CSV, we have to hide this item in report design. In this situation, this item also would be hide in other render format.
    If possible, I recommend you update your SSRS 2008 to SSRS 2008r2.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Configuring Kerberos authentication for SSRS in native mode - SSRS 2008 R2-2012

    Hi,
    I've a SSRS native mode installation on a server and a SSAS installation on another server.
    In order to configure the Kerberos authentication for SSRS native mode, I need to register one SPN for the report server service, one SPN for SSAS service and to configure SSRS to use the negotiate authentication type, isn't it?
    Thanks

    Hi pscorca,
    If we have applications that only use Kerberos authentication and we are using RSWindowsNegotiate AuthenticationType, we must create a Service Principal Name (SPN) for the Report Server service if we configure it to run as a domain user account.
    Before setting up constrained delegation, we must register a
    Service Principle Name (SPN) for the Analysis Services instance. We will need the Analysis Services SPN when configuring Kerberos constrained delegation for middle tier services.
    There is a document about Enabling Kerberos Authentication for Reporting Services, you can refer to it.
    http://blogs.technet.com/b/rob/archive/2011/11/23/enabling-kerberos-authentication-for-reporting-services.aspx
    Hoe this helps.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Ssrs 2008 r2 export to csv file problem

    In an SSRS 2008 R2 report, the users are going to export the data to: csv (comma delimited) and  excel.
    I am using the following to display if a column is visible or not:
    =IIF(Mid(Globals!RenderFormat.Name,1,5)="EXCEL" AND First(Len(Fields!CustomerNumber.Value)) > 0,False,true).
    I have set the DataElementOutput=Output for the textbox that displays the value. I have left  DataElementOutput=Auto for the textbox that contains the column header.
    When exporting to csv (comma delimited) or excel, I basically want the column to be visible when there is data in the field and the column not to be visible when there is no data.
    The code works for excel but the code does not work for comma delimited.
    Thus can you tell me what I can do so the column is not disaplyed when the data is exported to csv (comma delimited)?

    I don't think what you are trying to do is supported in .CSV files as it only saves text and values.  See the following article:
    http://office.microsoft.com/en-us/help/excel-formatting-and-features-that-are-not-transferred-to-other-file-formats-HP010014105.aspx
    If you open a .CSV file using excel you can use formulas, but if you try and save it, it will not allow you to.  I assume this is what you are trying to do.

  • Roadmap for SSRS from SQL2012 to SQL2014 and beyond?

    Hi there,
    We are the authors of a web application that has grown over a number of years and serves a lot of corporate clients, each client with a lot of users all authenticating to our single application instance.
    We integrated to SSRS 2008 to provide a mechanism whereby we could publish application reports for the clients to run, but also give them a self service reporting portal and access to reporting tools for the more sophisticated users. This has made us very
    dependent on:
    - SSRS custom authentication, so the users log into our application only once and then are authorized to run reports from SSRS. This took some time to get working, but is serving its purpose well.
    - SSRS Report Manager. We have quite an elaborate folder structure in Report Manager reflecting all of the different clients and the reports they have created for their own use. Again, Report Manager is serving this purpose well. In conjunction with custom
    authentication, we have good control over which users should have access to which reports/folders/functionality.
    - Report Builder. We still have some novice users running Report Builder 1.0, and some more sophisticated users running Report Builder 2012. We have all become familiar with these tools and are quite satisfied with them.
    - Report Models. From the outset, we needed to expose a simple data model to users that they could use for basic reporting with only HTTP access to the site, without all of the security and performance issues of requiring/allowing people to write T-SQL queries.
    Report Models have also been quite suitable for this, albeit with some limitations that have caught us out (such as difficulties doing a LEFT JOIN type query).
    With all the recent upheaval related to Power BI, Power View requiring Silverlight and SharePoint, Report Builder fading into the background, more focus placed on Excel for self-service reporting, and more focus placed on Office 365/Azure, this has left
    us in a bit of a hole.
    Dropping support for Report Models is likely to be the biggest issue for us. We have been using them for many years, and our users have created thousands and thousands of purpose-built reports based on the models. It's not feasible for us as developers to
    painstakingly recreate their reports against some other data source (SSAS tabular model?), and it's going to be a public relations disaster if we have to tell the users they need to throw away all that work they've done building their reports based on
    report models and start again from scratch.
    The way forward for us with Microsoft is not clear at present, and rather than continue to pour money and time into Microsoft BI, we have to consider going with other tools that have a more predictable vision, better backward compatibility, a better migration
    path, and require less investment in bulky platforms that provide little added value but drastically increase the cost of ownership. Azure may be part of this puzzle, but we need to know we can transition into it without throwing away our existing investment
    in reporting.
    If I could write a wishlist of things that would sway us, it would be:
    - Continued support and enhancement for Report Models on both the server side, and the development tooling. Preferably, better support for custom authentication, dynamic security rules in the model perhaps by allowing the model to accept parameters.
    - If not the above, then a simple migration tool or compatibility wrapper to allow us to preserve existing functionality while building upon it with Microsoft Power BI tools.
    - The ability to use Power View, newer visualization tools, self-service reporting, sharing of reports, publishing of reports, scheduling of reports without the need for SharePoint.
    - If not the above, then access to this functionality via Azure so we are not maintaining SharePoint exclusively to provide some reporting capability for our application.
    - The ability to use our application's own authentication mechanism to flow single sign-on authorization through into SSRS. I'm not opposed to using some form of Active Directory or .NET membership here, as long as we can preserve the ability for us to authenticate
    users with their existing usernames and passwords into both our application and SSRS.
    - Continued support and enhancement of Report Builder. I'd be happier paying a per-user subscription fee to keep Report Builder alive than trying to force all our novice users into Excel with clunky add-ins.
    - The ability for users to access summarized data such as that exposed via an SSAS multi-dimensional cube but designing reports using the familiar Report Builder interface over an HTTP connection, with a consistent security mechanism. In particular we use a
    lot of "time intelligence" type dimensions.
    I'm sure Power BI is quite enticing for a new project, but remember that not all of your customers are building a new application from scratch with massive graphic/video/social media or "internet of things" type data volumes. We are simply trying
    to maintain an existing project with modest transactional business data requirements we built with the tools you gave us.
    I would be happy to hear from Riccardo Muti or anyone from the SSRS team for an update on this. I note it's been 9 months since the last SSRS blog post at
    http://blogs.msdn.com/b/sqlrsteamblog/. This makes me worry that the team has either been disbanded, or has been busy working on something that's going to take us by surprise because they haven't put the
    necessary effort into communicating with us.
    I look forward to a response from MS.
    Thanks,
    Michael

    Thank you Michael for taking the time to express your concerns and thoughts.  You have articulated a number of my concerns which l believe like you have not been addressed by Microsoft publicly.
    Whilst l can see considerable benefit in all the work that has been put into Power BI.  The tool still falls short of a number of features and capabilities offered by SSRS.  As such is not a possible alternative for the reports we currently deliver
    or will deliver in the foreseeable future.
    The feedback on connect has been closed therefore l have few options to express my feedback.  In the comments left l can see "Details for the next release are available under NDA through a sales representative."  This is somewhat cryptic
    to me in that l also have no idea how to contact a sales representative or for that matter ensure l contact the correct sales representative.  Based on feedback from a previous clients interaction with other MS sales representative's, its best to ensure
    l speak to the one that knows this product, with sufficient technical knowledge.  Any guidance on how to contact the appropriate sales representative would be very welcome.

  • Ssrs 2008 r2 black line incorrectly being displayed

    In an existing SSRS 2008 r2 report, I just added a page header so that I can display global values in the page header like run date, run time, and page number. Within the report header, I placed all the report header data within a rectangle. Now when I run
    the report, there is a black line appearing after the report header but before the details of the report.
    I have changed all the border colors to be white and the borderstyle to none. The black solid line between last part of report header to before the detail data keeps appearing.
    Thus can you tell me how to keep this black line from end of pageheader or rectangle to before the detail data from appearing?

    Hi wendy,
    According to your description, I taken a simple test in my local environment (SSRS 2008R2). In my scenario, I insert a page header in the report, then use a rectangle to contain all the items (such as global values) within the page header after creating
    a table in the report body. While everything goes well, and there is no such a black line between page header and report body.
    As per my understanding, may be you have set the BorderColor property to Black and BorderStyle to Solid of Page header or Rectangle or Report Body. So we can double check those item properties in the report.
    If this issue still exists, could you please post the .rdl file and your dataset with sample datato us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Ssrs 2008 r2 or ssrs 2012 place moving graphics in report while it is executing

    In a new ssrs 2008 r2 or ssrs 2012 report application, I want to add some graphics to
    the report(s). I know that you can embedded a graphic in the ssrs report. However I would like to be able to do one or more of the items I am listing below:
    1. In one or two spots, I would like to have the pictures change. The picture would display for 5 to 60 seconds and then a new graphic would show up.
    2.  I would like the possibility of one graphic being displayed while the entire ssrs report is executing. The next time the report is executing, a new graphic would be displayed.
    3. I would like a 'slideshow' of graphics being displayed. The slideshow would be dsiplayed in in the same sequence.
    4. I would like to obtain the graphics from an open show (free) location for a non profit public school system.
    Thus can you tell me if any of the options I listed above are possibly? If so, can  you tell me what option I can embed in a report and how to accomplish the goal in the ssrs report?
    Also if you have any other ideas about graphics in the report, can you tell me what thse option(s) are and how would I accomplish this goal?

    Hi wendy,
    In Reporting Services, if we want to only display one graphic in some time, and display other graphics in other times in a report. So that the all graphics are alternatively displayed in the report. In this scenario, we can set the AutoRefresh property of
    the report to x number of seconds for the changes to occur, then set the visibility property of graphics based on AutoRefresh length we have set. For more details, please see the steps below:
    Set the AutoRefresh property of the report to 15 seconds (supposing there are 4 graphics in the report (60/4=15)).
    Insert all graphics in the report.
    Use the following expressions to control the visibility of graphics.
    Graphic 1:=IIf(Second(Now()) < 15, False, True) the first graphic will show if the AutoRefresh occurred during the first 15 second block of the current minute, all other times during that minute it will be hidden.
    Graphic 2:=IIf(Second(Now()) >= 15 AND Second(Now()) < 30, False, True) the second graphic will show if the AutoRefresh occurred during the second 15 second block of the current minute, all other times during that minute it will
    be hidden.
    Graphic 3:=IIf(Second(Now()) >= 30 AND Second(Now()) < 45, False, True) the third graphic will will show if the AutoRefresh occurred during the third 15 second block of the current minute, all other times during that minute it will
    be hidden.
    Graphic 4:=IIf(Second(Now()) >= 45, False, True) the fourth graphic will show if the AutoRefresh occurred during the fourth 15 second block of the current minute, all other times during that minute it will be hidden.
    Besides, we cannot display the image with dynamic form by using External Image Option, it will be replaced with static form. So if we want to show slideshow in the report, we can also refer to the following thread:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/62b0317b-1458-4d91-9fdd-00c4bbe791f7/ssrs-report-slideshow-on-autorefrsh?forum=sqlreportingservices
    Hope this helps.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Ssrs 2008 r2 display of url value

    In an existing SSRS 2008 R2 application, the users will be clicking on url links to access help documents that are in a PDF
    format. When the user hovers over the tab in the browser, the actual web url is listed. My company thinks this can be a secruity
    problem.
    Thus my question in an SSRS 2008 R2 report, is there a way to hide the real link of where the PDF document is located at? Basically is there a way to hide the real url and/or just display a url that does not really exist? If so, can you show me code on how
    to accomplish this goal?

    Hi Wendy,
    Based on my test, if we are use below expression, it will not list the URL.
    ="javascript:void(window.open('http://test1.op.org/ReportServer/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))"
    I found a work around for your previous case, please refer to the expression below:
    ="javascript:void(window.open('” & Globals!ReportServerUrl & “/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))"
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

Maybe you are looking for

  • Command_link generated by JSTL does not return value attribute

    Since data_table CANNOT RENDER DATA IN SINGLE ROW, MULTIPLE COLUMNS, I am using the following to show the data as links in single row, multiple columns <TABLE><TR><TD> <c:forEach var="item" items="${MyBean.Filters}"> <c:set var="myLink" value="${item

  • Oracle10gR2-Data Guard

    I want to configure Oracle10gR2 Data Guard for the following scenario: •     In a Data Guard environment, we want to configure One Primary Server and Two Standby databases. •     The Primary server will be using the internal hard drives for storage (

  • Movies and TV shows in the cloud playback keeps quitting

    Hi I'm hoping someone can help me with this strange and very frustrating problem we have encountered recently... I'm running a Mac Mini (latest model that comes with Server, Mavericks, 16GB RAM). We have fibre broadband with Virgin Media and get spee

  • I have an hp5510 ? I have windows 7 64-bit

     I am finding it very hard to conect my printer to my computer can anyone help ?

  • IPhone 4s WLAN problems

    Hi, First of all i want to tell you, that i think the apple Support is very complicate. I tried to find an contact form or an email adress, where i can ask my question. But i couldn't find anything. Now i try this Way. I bought an iPhone 4s about two