SSRS Silverlight HTML5 question

Can anyone tell me when SSRS is in native mode (not SharePoint) does it use Silverlight? In particular, do the particular components use it. e.g. Report Builder, Report Viewer, SSRS web site?
Also, are there any differences between SSRS versions: SQL2008, SQL2008R2, SQL2012 and SQL2014
Also, if Silverlight is used what version it is and does it change with SQL versions?
The flip question is the same as above but applying to HTML5?
The context of this question is our client has a web app that uses report viewer and the app uses Silverlight. I know PowerView uses silverlight but as the client app is native SSRS that doesn't apply. The client has chosen a product roadmap that is to migrate
from Silverlight to HTML5 in the future. I'm not sure what the impact of this is with SSRS.
Thanks very much, Brian
Brian Searle

...SSRS hasn't received much love from MSFT since 2008R2,
That's really true.
HTML5 is just Html as right now + several enhancements, so you can use the ReportViewer WebForms in Html5.
Issue is more the use backend web compont, while ReportViewer works fine in classic ASP + ASP.NET projects, you will have issues in using in ASP.NET - MVC Projects, because RV call backs are directed to the MVC Service instead to SSRS.
Olaf Helper
[ Blog] [ Xing] [ MVP]

Similar Messages

  • SSRS expression sum question

    I want to add a column after Total lets say..'Progress' where Progress = sum(Actual)/sum(Budget)
    The only filter on Progress is to consider only those values from months where both Actual and Budget are present.
    So, e.g.
    For first row: 0/0 = 0
    For second row: 0/0 = 0
    For third row: 28334/67060(instead of 200511) = 0
    if there would have been an Actual value for the month of August e.g. 100, then (28334+100)/(67060+66614)
    For fourth row: 0/0 = 0
    How can I achieve this using expressions in SSRS?
    Thanks in advanc

    Hi rockstar283,
    As per my understanding, you want to add a column names Progress, it is calculated from the values of Actual and Budget. In current month, Progress = sum(Actual)/sum(Budget), else, it is set to 0. If so, please refer to the following expression:
    =IIF(Month(Fields!pmonth.Value)=Month(Today()),Sum(Fields!Actual.Value),0)/IIF(Sum(Fields!budget.Value)=0,1,Sum(Fields!budget.Value))
    The following screenshot is for your reference:
    If my understanding is not correct, please feel free to let me know. I would appreciate it if you could give us detailed description of your requirements, it’s also better to provide the table structure and some sample data. It will help us move more quickly
    toward a solution.
    Thanks,
    Wendy Fu

  • SSRS Report Display Question in Reportviewer

    I created a report using a list to group data by system names in order to filter data. Based on filtered data, I populate the chart associated to the group. If I run this report in report builder, everything looks good as in following image.
    However, if I put this report in reportviewer 10.0 and render in IE10 and above, all the chart are not displaying correct. Somehow a very big space is added after every chart. I don't have problems with displaying any charts not in list, or any list only
    contains text data.
    I have been researching this issue for two days, and could not find any solution. Please help. Thank you!

    Hi Sichen,
    Based on my test, I cannot reproduce the same issue in my test environment.
    In SSRS, if we are use list to display tablix, the location of the tablix in the list would affect the structure of this tablix in the report. For example, if there are lager gap between tablix bottom line and list bottom line, when we preview the report,
    we will get big space between each charts. Please make sure it is proper gap in your report design.
    The render mistake in IE 10 may be due to the IE compatibility issue. Please try to configure the IE 10 to run in Compatibility View mode to check if the report render correctly.
    Reference:
    http://social.msdn.microsoft.com/Forums/en-US/01c7db3e-8610-4bdd-957c-8eceba44907e/ie-10-ssrs-reports-no-longer-allows-drop-down-functionality
    If the issue is persist, could you please post your dataset with sample data and the screenshot about your report design? It is benefit for us to do further analysis.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Ssrs 2008 query question regarding in statement

    I am no sql expert, so any help would be greatly appreciated.  Thank you in advance.  I want the user to enter in loan numbers they would like to reflect on a report in ssrs 2008.  The loan number field is a text field.
    My sql looks like this, and the user will enter in loan numbers like ( 0001,0002,0003) - comma separated.  However, Visual studio does not like the format.  I know it must be something simple, but I can't figure out the correct syntax.
    select * from dbo.vwEscrowHistoryLoan
    where Lnid in @LnID

    allow multiple values will solve your problem first.
    only follow below steps. if it doesnt solve your problem.
    1.create the table valued function in your SSMS(managementstudio)
    not in report vb code.
    2.
    DECLARE @LnID VARCHAR(MAX)='1,2,3,4'
    select
    * from dbo.vwEscrowHistoryLoan
    where Lnid in (SELECT DATA FROM DBO.
    F_Split(@LnID,','

  • SSRS : Performance related question

    Hi Frineds,
    I have below scenario
    I have one master Driver report (rdl) which has 7 sub reports. I have put expression on the visibility of those reports.
    well reports are running slow.
    Example of one sub report:: in this i have one big rectangle, in that rectangle i have different regular stuff(tablix, textboxes and images).
    Instead of 7 sub reports i can take 7 big rectangle and put the similar expressiion on the visibility of those big rectangles.
    the benefit is, there will be only one report(the master driver report dont need to call any report).
    The question is,
    Will this new approach gives any performance benefit ???
    Thanks In advance,
    Parixitsinh

    Hi Parixitsinh,
    In Reporting Services, each subreport instance is a separate query execution and a separate report processing task. So there are some advantages and disadvantages of using subreports within performance issue. The details information is shown below:
    Do use subreports when there are just a few subreport instances.
    Do not use subreports inside a group when there are many group instances. For example, to display a list of both sales and returns for each customer, consider using drillthrough reports. Consider whether you can write the query to join the customer with
    sales and returns and then group by the customer ID.
    Do use subreports when the subreport uses a different data source than the main report. If performance is an issue, consider changing the dataset query in the main report by using one of the following mitigation strategies:
    • Collect data in a data warehouse and use the data warehouse as a data source for a single dataset.
    • Use SQL Server linked servers and write a query that retrieves data from multiple databases.
    • Use the OPEN ROWSET capability to specify different databases.
    For more information about the report performance, we can refer to the following document:
    http://technet.microsoft.com/en-us/library/bb522806(v=sql.105).aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Xcode: loading HTML5 questions from local storage

    Version: Captivate 6
    Output type: HTML5 loaded as local files within an Xcode iOS project.
    Not sure at this point if the problem is with Xcode or the Captivate files.
    The requirement is to load 'offline' local Captivate quizzes within an iOS application. The HTML5 output from Captivate loads absolutely fine when stored on a web server and viewed through the browser (Safari) on the iPhone. The puzzling bit is when I load the files into an Xcode project and view them through a UIWebView locally the Captivate content does load properly, although it does load a grey placeholder style box in a HTML page - the content does not initiate. See screen grab.
    I am conscious the Captivate HTML5 output contains a lot of javascript files and have made sure these are included in the Copy Bundle Resources rather than the Compile Sources.
    I made a simple local HTML page and the content in this renders absolutely fine in application, using the UIWebView also to view the content on a webserver within the app works fine.
    Any suggestions?

    I'd suggest using Safari and set the UserAgent to be an iphone and see if there is anything in the error console. That might give you a clue.
    Fergal

  • Youtube/Safari/HTML5 question

    I am using Safari version 5.1.1 on Mac OX 10.7.2.  In YouTube, I am participating in the HTML5 trial.
    Recently (perhaps as recently as when I upgraded to 5.1.1 and 10.7.2 a few days ago, but I really don't know), the 'Full Screen' button on the lower right hand side of any HTML5 YouTube video stopped working.  The video just stays at the original size.  This does not happen in Safari for videos that are rendered in Flash.  This problem does not happen in Chrome.  When I turn the HTML5 trial off, the full screen button works properly on all videos.
    This happens on all of my Macs (an iMac, a Mini, and an Air).
    Any ideas?  Am I do something wrong - or is the problem on YouTube's (or Safari's) end?

    Interestingly enough, I can take any video, HTML5 included, and watch it in full screen by tinkering with the URL as follows (undoubtedly a well known trick to many):
    E.g., change
    http://www.youtube.com/watch?v=PZp9IFFHe5A
    to
    http://www.youtube.com/v/PZp9IFFHe5A
    for full screen.
    But I can't switch using the button

  • Best place to ask an html5 question?

    So I am a print designer with very little experience with html, css, etc. I have a client who has a programmer building a site for them that is running into some techincial issues in regards to what can be done using html 5. Does anyone have any suggestion on where I could ask specific question in regards to html 5? I know this is the DW forums, but the html 5 forums here look pretty dead so I figured this migth be a good place to ask where to go. And if you say here, then I will just repost with a more specific question.
    Thanks in advance for any suggestions

    You are absolutley rigth, it really does confound some print designers, me included. I see html and it just look slike giberish to me.
    Anyways, this is one of my larger clients, so hopefully I can help them out. BTW, not looking to find out how it can be done, just if it can be done. The site in question lets the end user upload a large file and do a small bit of design to it. It then outputs to my client for printing. The issue is that it is really very slow becasue they are large files to start with. So is there a way to write code that would temporarily replace that large file with a small version, then reinsert it at the end of the process for printing. If you are familiar with ID or AI think of it simialr to linked low res version that then gets replaced with a high res version.
    Strangley enough, it wasnt just me that suggested this to my client. Apparently his hosting company made the same susgguestion earlier on the same day. If was just me I would have probably just dropped it and said okay, that just isnt posible rigth now. But when the same suggestion comes from the hosting as well it makes me think maybe it can be done.

  • SAP Cloud SDK : Cloud For Customer HTML5 Development

    Hi Experts,
    I have Some questions about the Upgrade to Silverlight -> HTML5.
    1) When the Cloud For Customer release the C4C in HTML5 mode with all the available work-center "Application and User Management" and all ?
    2) What is the Development software/environment to create custom business objects or enhance the standard business objects using "SAP Cloud Application Studio 14XX" or "Eclipse" software?
    3) After Upgrade the C4C into HTML5 what is the language use in development environment?
    Many Thanks,
    Mithun        

    Hello Mithun,
    1) You can use the work center "Administration" which takes the role of the "Application and User Management" with a hopeful better representation of the business user needs.#
    2) At the moment there are no plans to replace the "SAP Cloud Applications Studio" by something else.
    3) As long as there are no migration plans, there are also no plans for a "new" langauge
    HTH,
       Horst

  • Creating snapshot in SSRS 2008 R2 report will disable some parameters.

    Hi guys.
    I'm new to SSRS, so the question that I'm going to ask might sound stupid, hope you guys don't mind.
    I have a few reports that display data based on the snapshot. I found out that some of the parameters on certain reports were disabled and some are not. When I removed the snapshot setting and display the report based on latest data, those disabled parameters
    will be enabled again.
    After some search from Google, I understand that when using snapshot, the parameters will be disabled. But in my case, not all parameters are disabled. And there is some reports with snapshot, all of their parameters are enabled. Please help me on this if
    there is any settings that I need to do to enable all of the parameters.
    Thanks and have a nice day.

    Hi engloon,
    According to your description, you want to enable parameters when creating a snapshot. Right?
    In Reporting Services, Snapshots can be created manually or at scheduled intervals for any report that can run unattended. Furthermore, if the report uses parameters, you must specify default values to use when the report runs. You can specify stored credentials
    and parameter values in the property pages for the report.
    In this scenario, you may have default values for parameters in some reports so that it looks those reports have parameters enabled. So if you want to have snapshot rendered with parameter selection, you can specify the default values in Parameter tab. Please
    follow the steps below:
    Open Report Manager, and locate the report for which you want to modify parameter settings.
    Hover over the report, and click the drop-down arrow.
    In the drop-down menu, click Manage. This opens the General properties page for the report.
    Select the Parameters tab. If the Parameters tab is not visible, the report does not contain parameters.
    Reference:
    Create, Modify, and Delete Snapshots in Report History
    Add a Snapshot to Report History (Report Manager)
    Parameters Properties Page (Report Manager)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Come risolvere la questione di trovare un file nel server?

    Buon giorno, signori,
    sono "[email protected]", e sono il gestore del un sito
    "http://www.caeiro-portit.it" con Tiscali.it
    uso il protocollo FTP con Dreamweaver CS6; e html5
    Questione: quando provo a pubblicare una nuova pagina nel sito mi compare un
    rapporto FTP che dice
    "impossibile eseguire l'operazione, causa impossibità di eliminare l'antico
    file già pubblicato",
    ossia, Vi chiedo di darmi una possibile soluzione, perché ho già eliminato
    il vecchio file dal mio computer e dal remoto, ma
    il messaggio segue sempre in primo piano, oppure potete fare Voi??, in
    questo caso l'URL della pagina è
    "http://www.caeiro-portit.it/Machado de Assis.htm ". Vi ringrazio, per il
    supporto e/o
    eventuali sugerimenti.
    marco aurelio barreira barbosa

    Hi adrianop87488997,
    Thank you for your clear explanation of the problem you're running into with ExportPDF. For starters, please make sure that you're choosing the correct language for Optical Character Recognition (OCR). But, that said, I would be interested in learning more about the PDF file you're converting. Please choose File > Properties and check the PDF Producer listed on the Description tab. If the PDF was created by a third-party (anybody other than Adobe), it may not be written to spec, which can affect the quality of the conversion. Please see Support Policy for PDF Files created by non Adobe applications.
    Best,
    Sara

  • How to solve html:script-inf

    I created website with adobe catalyst CS5. And I uploaded the files through dreamweaver CS5. The day after I Visit my website it shows that html:script-inf by avast internet security 5. I uploaded my website again. The next day if I Visit the same problem. How to solve this. If any solution please help.

    Is this an HTML5 question?

  • Is iWeb Really "What You See is all You'll Get"

    Not an articulate title I know, but I've been coming to the realization that iWeb has seen it's last updates. I've been holding out hope for iWeb Pro. I still plan on using iWeb for some time to come, but here's my question. Will IOS kill iWeb. Right now my iWeb sites seem to look and act fine on IOS devises, with the exception of the iWeb standard Slideshow that used when publishing to FTP. On my photo album pages, the slideshows work on IOS, but the second line or more of the photo description is cut off. So is this a problem with iWeb not publishing HTML 5 compliant sites.
    Alot of my customers are now viewing my site on iPhones and iPads and I want to be sure the viewing experience is equal on both Desktop and Mobile devises.
    So I'm assuming that many iWeb users are more so experimenting with other Apps such as Rapidweaver, Sandvox, Freeway, Macflux and more. Most of the posts I've searched on the iWeb Forum are from 2010 and mid 2011. Does anyone have any 2012 input as to my HTML5 question in regards to iWeb and IOS and or with other website apps.
    Ref: I've only downloaded trial versions of Sandvox 2, Rapidweaver and I will download Freeway tonight. Apps are either to complicated or to restraining. Still like iWeb the best.

    2012 is only 19 days old.
    Progress is fast, but not that fast that your 2011 info has become obsolete.
    iWeb is HTML compliant. And your photo problem has nothing to do with HTML5. When viewed on a mobile device, the browser chooses the mobile version of the photo slideshow page.
    <script type="text/javascript"> // <![CDATA[ if(navigator.userAgent.match(/iPhone/)) { location = 'phoneshow.html' + location.search; } // ]]> </script>
    Simply make the text fit. Rewrite the captions.

  • Integration with WPF using Frame vs ReportViewer controls

    I will forward this with stating that I am very new to WPF, but I'm a proficient SSRS developer, and have a good understanding of the ReportViewer control and capabilities of SSRS.
    My question is regarding the pros and cons of using the WindowsFormHost > ReportViewer method vs using a WPF Frame to load the report URL directly.
    It looks like using a Frame and handling the URL / Parameter logic behind the scenes would work just as well as the ReportViewer, but I would like other opinions on it, because I feel I am missing important details.
    If I'm overriding the native toolbar with my own handling of Exporting and/or report parameters (regardless of method), what would be the difference between loading the HTML version of the report?

    Hi Aaron,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Questions on HTML5 Output in FrameMaker 12

    I have a couple questions about the HTML5 Output:
    1. I have images that are not appearing in the output (they are in the source FM file, but not in the HTML5 output). What am I doing wrong?
    2. Is there a way to disable the glossary function so that it doesn't appear as an option in the HTML5 output?
    Any help is greatly appreciated. Thanks!

    1. Are all of the images in anchored frames? Have you edited any of the settings under Style mapping > Image?
    2. Currently, AFAIK, this is hardwired. You could try spelunking in a saved settings.sts file (it's just a zip container) to see if this can be turned off there [if you're quite familiar with XML, DTD's (.slp file), HTML and javascript],

Maybe you are looking for