ssrs report not render but Pdf Export successfully - reporting-services

i am using ssrs report ,and i have some problem in that when i try to open report using report viewer report showing a blank page but report export to pdf working fine blank render report also Export successfully and print also it is working fine
but the problem is in report viewer report not render and it is showing blank page if i try to find something or some key word if i enter to find that all report are render properly .
in report server if i try to open the report it is showing blank.

Sounds like a browser problem, the reports that i create on ssrs 2008 r2 only seem to render correctly on Internet Explorer.

Check your parameters, If any are unhidden or set to prompt user then SSRS won't render direct to PDF

If any of your parameters having more than 1000 available values this problem may occur.
Please have a look on this question and answer:
Report is not loading when using parameters

Related

SSRS showing old data in Report Server

We have 1 report that's being exported to PDF manually in the web page.
However, when we update a certain value, the new value can be seen in the table but when we tried exporting the data, it keep showing the old value in the report.
The stored procedure used in the report is showing the new value.
It works fine when running the VS 2013.
I am not sure if caching is enabled in our report server but in that RDL file, we did not explicitly specify to cached the data as shown below.
Processing Options Screenshot
Snapshot Options Screenshot
Parameter Settings Screenshot
There are no RDL.Data files in the report server as well and other reports are extracted to PDF and its working fine.
Do you have any idea or did I missed something that needs to be checked?
Thank you.

Opening a SSRS report in PDF format on an image click

I am new to SSRS and having hard time rendering a report in PDF format.
I have a master report which within has a PDF icon. My requirement is to get a report that uses the parameters from SSRS master report and open the report in PDF format in new tab.
I tried applying the below logic from a post from Stack overflow
(https://stackoverflow.com/questions/ask?title=I%20am%20new%20to%20SSRS%20and%20having%20hard%20time%20rendering%20a%20report%20in%20PDF%20format.)
For example, to specify two parameters, “ReportMonth” and “ReportYear”, defined in a
report, use the following URL for a native mode report server:
http://myrshost/ReportServer?/AdventureWorks 2008R2/Employee_Sales_Summary_2008R2&ReportMonth=3&ReportYear=2008
but the same did not work.
**I need to pass the parameters from master report.
I am building my report using SSDT version 2017 and using HANA as DS.
Thanks in advance.
You will have to use the Action property with the Go to URL action of the icon. Use an expression to build the URL:
=String.Format(“http://myrshost/ReportServer/?/MyReportName&ReportMonth={0}&ReportYear={1}&rs:Format=PDF", Fields!ReportMonth.Value, Fields!ReportYear.Value)
This will replace the placeholders {0} and {1} in the string with values from your master (current) report and pass them as parameters to the MyReportName report which will be rendered as PDF.

SSRS Data hidden on screen but visible when exported to PDF

I am facing a peculiar issue in a report using SSRS. When I run the report in BIDS the report runs fine. When I deploy to my report server - we are using sharepoint integrated mode - a particular section is hidden. When I export to PDF from the report server the section magically appears.
The section does have some visibility criteria set but its not on render formats - instead on fields.
BTW - this is the expression I am using:
=IIF(Fields!Item16Status.Value = "NA", True, False).
Also this is happening only for one particular value of input parameters.
I have included the screenshots from BIDS and server for reference here.
Any suggestions to resolve this would be great.
Thanks.

Visual Studio 2015 SSRS - Report Preview Shows Invisible Values

I am developing SSRS reports in Visual Studio 2015. This happened before in the SQL Report Builder.
When I try and preview the report is doesnt show any of the value. However exporting the report does show the values.
This is really annoying as I have to export the report to see my results.
Has anyone come across this or have a possible solution?
One thought that comes to mind is the data cache issue. Have you tried:
1) Clicking the "Refresh" button on the report after it is ran because I believe that refreshes the data cache
2) Via File Explorer navigate to where the .rdl file is and find the .data file for the report and delete it then run the report.
3) As per the comments below: In VS2015 just clean the project, it deletes the .data files.

SSRS report shared data source wont render

SSRS report wont work with a shared data source .
Report works perfectly fine if i use embedded data source.
The moment i switch back to shared data source the report goes blank again, no error shown.
I am trying to preview the report in visual studio 2013.
Any one got a similar problem? any suggested fix for this?
Sql server BI plugin update fixed the rendering issue