Problem sending a standard landscape SSRS report to a printer

I have successfully used the Printer Delivery Extension sample (_//msdn.microsoft.com/en-us/library/ms252091(v=vs.100).aspx) in a vb.net  winforms application to send a 28” X 17” rdlc report to a specialty printer.
However, I cannot seem to successfully send an 8.5” X 11” landscape report (rdlc) directly to a printer without preview or printdialog using the same approach.
I have tried setting the paper size to “custom” in Report Properties in the report design  (this automatically reverts to “Letter” due to the dimensions).  I also tried reversing the width/height dimensions  in the report design and in the “PageWidth”
and “PageHeight” settings in the <DeviceInfo> configuration info for the output emf file.  I have tried various combinations of PrintDocument settings (including setting DefaultPageSettings.Landscape=true), with no success. I also tried setting
the DefaultPageSetting pages size to one I created programmatically with the correct dimensions (1100/850). Even though it is defined as a landscape report, I get either a report broken over 2 portrait pages, or a report squeezed into a smaller area on a single
portrait page.
I don’t know if there is a device setting that would “tell” the emf file that this is a landscape report, but it’s almost like that information is not being passed, despite of all the settings I have experimented with.
Does anybody have any suggestions?  I have researched this online and tried every suggestion I have read.  According to other posts, some others had been unable to get this to work also.
UPDATE: This problem is still unresolved.  The report now prints in landscape mode, but the intended 10"X9" report is being compressed into an area 8.5" wide.  This is an excerpt of the code I am using:
    Friend Sub Run(ByRef report As LocalReport, printerName As String)
        Export(report)
        Print(printerName)
    End Sub
    Private Sub Export(ByVal report As LocalReport)
        Dim deviceInfo As String = "<DeviceInfo>" & _
            "<OutputFormat>EMF</OutputFormat>" & _
            "<PageWidth>11in</PageWidth>" & _
            "<PageHeight>8.5in</PageHeight>" & _
            "<MarginTop>0in</MarginTop>" & _
            "<MarginLeft>0in</MarginLeft>" & _
            "<MarginRight>0in</MarginRight>" & _
            "<MarginBottom>0in</MarginBottom>" & _
            "</DeviceInfo>"
        Dim warnings As Warning()
        m_streams = New List(Of Stream)()
        Try
            report.Render("Image", deviceInfo, AddressOf CreateStream, warnings)
            For Each stream As Stream In m_streams
                stream.Position = 0
            Next
        Catch ex As Exception
            ErrorRoutine.sendError("SendReportToPrinter.Export", ex)
        End Try
    End Sub
Private Sub Print(currentPrinter
As String)
    Try
        If m_streams
Is Nothing OrElse m_streams.Count
= 0 Then
        End If
        'set the print control for print document to StandardPrintController to suppress print dialog
        printDoc.PrintController
= New Printing.StandardPrintController
        printDoc.PrinterSettings.PrinterName
= currentPrinter
        If Not printDoc.PrinterSettings.IsValid
Then
            Throw
New System.Exception("Error: cannot find printer.")
        Else
            m_currentPageIndex
= 0
            AddHandler printDoc.PrintPage,
AddressOf PrintListPage
            Dim pkSize
As New PaperSize("Custom",
1100, 850)
            printDoc.DefaultPageSettings.PaperSize
= pkSize
            printDoc.DefaultPageSettings.Landscape
= True
            printDoc.PrinterSettings.DefaultPageSettings.PaperSize
= pkSize
            printDoc.Print()
        End If
    Catch e As Exception
        MsgBox("Error:"
& e.Message, MsgBoxStyle.OkOnly)
    End Try
End Sub
Private Sub PrintListPage(ByVal sender
As Object,
ByVal ev As PrintPageEventArgs)
    Dim pageImage As
New Metafile(m_streams(m_currentPageIndex))
    ev.PageSettings.Landscape
= True
    ' Adjust rectangular area with printer margins.
    Dim adjustedRect As
New Rectangle(ev.PageBounds.Left
- CInt(ev.PageSettings.HardMarginX), _
                                      ev.PageBounds.Top
- CInt(ev.PageSettings.HardMarginY), _
                                      ev.PageBounds.Width,
                                      ev.PageBounds.Height)
    ' Draw a white background for the report
    ev.Graphics.FillRectangle(Brushes.White, adjustedRect)
    ' Draw the report content
    ev.Graphics.DrawImage(pageImage, adjustedRect)
    ' Prepare for the next page. Make sure we haven't hit the end.
    m_currentPageIndex += 1
    ev.HasMorePages =
(m_currentPageIndex < m_streams.Count)
End Sub
When stepping through the code in PrintListPage using debug, ev.PageSettings.Papersize shows a width and height of 1100 and 850, and ev.PageSettings.Landscape is set to True.  However, the rectangle shows a size corresponding to 8.5 X 11.  In    
Dim adjustedRect As New Rectangle(ev.PageBounds.Left - CInt(ev.PageSettings.HardMarginX), _                                     
ev.PageBounds.Top - CInt(ev.PageSettings.HardMarginY), _                                     
ev.PageBounds.Width, ev.PageBounds.Height)
I have tried swapping ev.PageBounds.Width and ev.PageBounds.Height, and actually hard coding numeric values for width and height, and the rectangle still appears to be dimensioned as portrait.  Does anybody see what I am doing wrong, and how to fix
this?

With active debug i got following information:
The first mail in the debug-log is with the source code as quoted in my first post, the second mail is when i cut out the part which generates and adds the attachement. I had to make the adresses anonymous, but the second mail contains a lot more adresses then the first, although they both use the same query with same parameters, etc.
Have i done something wrong with the attachements? Overwriting headers, syntax errors, anything? I'm out of ideas...
edit: Had to cut out the debug-log because it is too big. It just said that everything was working ok, but the first mail contains too few adresses and the second (without attachement) the correct number of adresses. I can mail the log, if you like.

Similar Messages

  • SSRS reports are not printing probably

    when I preview my reports they look great but when I print them I get some blank pages

    Hi Developer life,
    According to your description, after printing the report, blank pages display in the report.
    In Reporting Service, layout of items in the body should meet this requirement: Maximum Body Width=Page Width – (Left Margin + Right Margin). So please check the report page size within the print paper size.
    Besides, if we add duplicated page break, for example, select both “Add a page break before” and “Add a page break after” options when we design a report, blank page could appears between pages. So please check if your page break options setting is set correctly.
    In SSRS 2008 or higher, there is a Report Property ConsumeContainerWhitespace which controls whether white space in containers should be consumed when contents grow instead of preserving the minimum white space between the contents and the container. The
    value is set to False by default. So in your scenario, if you are sure there is no extra blank space in your report, please set value of ConsumeContainerWhightspace to True.
    Reference:
    Blank Page Issues – SSRS Reports
    The Case of the Extra Page: Rendering Reporting Services as PDF
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Does SSRS report supports chrome and firefox browsers as it does in internet explorer ?

    In Internet explorer i am able to view all the different kind of options for SSRS report:-
    For ex- Print, functionality to increase/decrease size, Search for a word in report etc.
    But in Chrome browser above features(Print/Size/Search) are not available.
    Kindly help?
    Regards
    Ankit

    This has details of supported browsers for SSRS and powerview
    http://msdn.microsoft.com/en-IN/library/ms156511(v=sql.110).aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Problem running SSRS report on SharePoint 2010 - report renders rendomly

    I have an SSRS master report that contains about 30 sub-reports. These reports are deployed to SharePoint 2010 server. Per my understanding these reports run independently of Reporting Server (execute directly from the cube/database).
    It appears that this master report executes for about 10 minutes and then returns a blank page for most requests. Seldom it returns the master report consisting 30 sub-reports. I have checked Report Server logs using the following query and it shows no trace.
    Use ReportServer
    select * from ExecutionLog3 order by TimeStart DESC
    I set SharePoint 2010 logging to the lowest level and reviewed the log for the run-time of the report. This log shows that the report and sub reports are being executed, however it does not provide any significant error information. Follows a sample of what
    SharePoint log contains for single sub-report execution.
    Timestamp Process TID Area Category EventID Level Message Correlation
    04/02/2014 15:43:18.75 ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Database 4ohp High Enumerating all sites in SPAdministrationWebApplication.
    04/02/2014 15:43:18.81 ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Database 4ohp High Enumerating all sites in SPAdministrationWebApplication.
    04/02/2014 15:43:21.07 ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable Potentially excessive number of SPRequest objects (16) currently unreleased on thread 15. Ensure that this object or its parent (such as an SPWeb or SPSite) is being properly disposed. This object is holding on to a separate native heap.This object will not be automatically disposed. Allocation Id for this object: {04E40041-2CC7-4CA2-8026-0921BFF7F0A8} Stack trace of current allocation: at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.SPRequestManager.GetContextRequest(SPRequestAuthenticationMode authenticationMode) at Microsoft.SharePoint.Administration.SPFarm....
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...get_RequestAny() at Microsoft.SharePoint.SPSite.InitUserToken(SPRequest request) at Microsoft.SharePoint.SPSite.SPSiteConstructor(SPFarm farm, Guid applicationId, Guid contentDatabaseId, Guid siteId, Guid siteSubscriptionId, SPUrlZone zone, Uri requestUri, String serverRelativeUrl, Boolean hostHeaderIsSiteName, SPUserToken userToken) at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken) at Microsoft.SharePoint.SPSite..ctor(String requestUrl) at Microsoft.ReportingServices.SharePoint.Objects.RSSPImpSite..ctor(String requestUrl) at Microsoft.ReportingServices.SharePoint.Objects.RSSharePointClassFactory.CreateSPSite(String requestUrl) at Microsoft.ReportingServices.SharePoint.ObjectModel.RSSharePointClassFacto...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...ry.CreateSPSite(String requestUrl) at Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper.GetSiteFromExternalPath(String path, Boolean noThrow) at Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper.SetExternalRoot(String path) at Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper.SyncToRSCatalog(ExternalItemPath path, Boolean createOnly) at Microsoft.ReportingServices.Library.CatalogItemFactory.InternalGetCatalogItem(CatalogItemContext itemContext, Boolean doSync, Boolean& wasSynched) at Microsoft.ReportingServices.Library.SubreportRetrieval.GetSubreportDataSources(ICatalogItemContext reportContext, String subreportPath, NeedsUpgrade needsUpgradeCallback, ICatalogItemContext& subreportContext, IChunkFactory& compil...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...edDefinitionChunkFactory, DataSourceInfoCollection& dataSources, DataSetInfoCollection& dataSets) at Microsoft.ReportingServices.ReportProcessing.ReportProcessing.CheckCredentialsOdp(Report report, DataSourceInfoCollection dataSources, DataSetInfoCollection dataSetReferences, ICatalogItemContext reportContext, OnDemandSubReportDataSourcesCallback subReportCallback, RuntimeDataSourceInfoCollection allDataSources, RuntimeDataSetInfoCollection allDataSetReferences, Int32 subReportLevel, Boolean checkIfUsable, ServerDataSourceSettings serverDatasourceSettings, Hashtable subReportNames) at Microsoft.ReportingServices.ReportProcessing.ReportProcessing.GetAllDataSources(ICatalogItemContext reportContext, IChunkFactory getCompiledDefinitionFactory, OnDemandSubReportDataSourcesCallback subR...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...eportCallback, DataSourceInfoCollection dataSources, DataSetInfoCollection dataSetReferences, Boolean checkIfUsable, ServerDataSourceSettings serverDatasourceSettings, RuntimeDataSourceInfoCollection& allDataSources, RuntimeDataSetInfoCollection& allDataSetReferences) at Microsoft.ReportingServices.Library.RSService.ProcessingGetAllDataSources(ReportProcessing repProc, CatalogItemContext reportContext, ReportSnapshot intermediateSnapshot, DataSourceInfoCollection thisReportDataSources, DataSetInfoCollection thisReportDataSets, Boolean checkIfUsable, RuntimeDataSourceInfoCollection& runtimeDataSources, RuntimeDataSetInfoCollection& runtimeDataSets) at Microsoft.ReportingServices.Library.RSService.GetAllDataSources(ReportProcessing repProc, BaseReportCatalogItem report, ReportSnapsho...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...t intermediateSnapshot, Boolean checkIfUsable, RuntimeDataSourceInfoCollection& runtimeDataSources, RuntimeDataSetInfoCollection& runtimeDataSets) at Microsoft.ReportingServices.Library.RSService.GetAllDataSources(BaseReportCatalogItem report, Boolean checkIfUsable, Boolean useServiceConnectionForRepublishing, ReportSnapshot& compiledDefinition, RuntimeDataSourceInfoCollection& runtimeDataSources, RuntimeDataSetInfoCollection& runtimeDataSets) at Microsoft.ReportingServices.Library.BaseReportCatalogItem.LoadRuntimeDataSources() at Microsoft.ReportingServices.Library.BaseReportCatalogItem.get_RuntimeDataSources() at Microsoft.ReportingServices.Library.GetDataForExecutionAction._GetDataForExecution(CatalogItemContext reportContext, ClientRequest session, String historyID, Dat...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...aSourcePromptCollection& prompts, ExecutionSettingEnum& execSetting, DateTime& snapshotExecutionDate, ReportSnapshot& snapshotData, Int32& pageCount, Boolean& hasDocMap, PageSettings& reportPageSettings, PaginationMode& paginationMode) at Microsoft.ReportingServices.Library.GetDataForExecutionAction.ExecuteStep(CatalogItemContext reportContext, ClientRequest session, DataSourcePromptCollection& prompts, ExecutionSettingEnum& execSetting, DateTime& executionDateTime, ReportSnapshot& snapshotData, Int32& pageCount, Boolean& hasDocMap, PageSettings& reportPageSettings, PaginationMode& paginationMode) at Microsoft.ReportingServices.Library.CreateNewSessionAction.Save() at Microsoft.ReportingServices.WebServer.ReportExecution2005Impl.LoadReport(String Report, String HistoryID, Execu...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...tionInfo2& executionInfo) at Microsoft.ReportingServices.WebServer.ReportExecutionService.LoadReport2(String Report, String HistoryID, ExecutionInfo2& executionInfo) at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.Web.Services.Protocols.LogicalMethodInfo.Invoke(Object target, Object[] values) at System.Web.Services.Protocols.WebServi...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...ceHandler.Invoke() at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest() at System.Web.Services.Protocols.SyncSessionlessHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) at System.Web.HttpRuntime.ProcessRequestNoDemand(HttpWorkerRequest wr) at System.Web.Http...
    04/02/2014 15:43:21.07* ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable ...Runtime.ProcessRequest(HttpWorkerRequest wr) at ReportingServicesHttpRuntime.RsHttpRuntime.ProcessRequest(IRsHttpPipeline rsHttpPipeline)
    04/02/2014 15:43:21.10 ReportingServicesService.exe (0x0684) 0x14C0 SharePoint Foundation Performance naqx Monitorable Potentially excessive number of SPRequest objects (16) currently unreleased on thread 15. Ensure that this object or its parent (such as an SPWeb or SPSite) is being properly disposed. This object is holding on to a separate native heap.This object will not be automatically disposed. Allocation Id for this object: {9D227A96-9050-4123-A663-EECC9CBDA04D} Stack trace of current allocation: at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.SPRequestManager.GetContextRequest(SPRequestAuthenticationMode authenticationMode) at Microsoft.SharePoint.Administration.SPFarm....
    I have tried running reports on IE 8, IE 9, Chrome and on multiple systems. This random behavior does not change across browsers or machines. Report is rendered for one out of 10 requests (if at all).
    Has someone experienced this problem? I have been spending a lot of time just to see the report output of the master. Unfortunately my SharePoint reports use shared data-sets and it is not possible to run master from Visual Studio 2008 IDE as well. 
    Thanks in advance for your help.
    Palak Mody

    Hi Kenny,
    Thank you for your question.
    From your description, you can to move the parameter pane from right to the top in the SharePoint site, right? I am afraid this cannot be done in SQL Server 2008R2 SSRS reports on SharePoint 2010 integrated mode. And this is a know issue which you can see:http://connect.microsoft.com/SQLServer/feedback/details/545893/allow-ssrs-parameter-panel-to-be-formatted
    Thank you for your understanding.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Problem with passing 2 or 3 members from filter to drillthrough report (SSRS report) in PPS

    Hi,
    I have one dashboard and one filter in PPS. Dashboard contains one main analytical chart report-- sales by Product category and the filter name is Year (contains the members values from 2005 to 2014).
    I have one more drillthrough report--- Detailed report for sales by product category (SSRS report)
    SSRS report having two parameters 1. year  (Multi selection) 2. Product category (single selection)
    Now, I have select 2006,2008 in the pps filter and analytical chart report rendered based on the filter values.
    next, on the analytical chart, I have selected on bar item (cars) out of 4 categories(Cars,Bikes,Trucks,Accessoreis) and right click -->drillthrough-->click on Detailed report for sales by product category.
    I have verified the ssrs detailed report and pps is passing only ALL member instead of passing 2006 and 2008 to the Year filter and Cars category members correctly passed to product category parameter from PPS.
    Note: If I have passed one member values (year=2006), pps is able to pass to ssrs report. But, it failed in two or more member values from filter.
    I have verified in sql profiler also. PPS passing ALL member to SSRS detailed report Year parameter.
    Please provide your suggestions. 
    Thanks,
    kishore

    sorry for the late updation.
    My First Report, Summary level is a Pivot Table.
    I tried the same report with Table option, the value is passing correctly.
    Is there a way to get rid of this situation using Pivot table.
    Thanks for your help.
    below is the original request.
    Hi,
    I am Hemanth, I have developed 2 reports. Firast Report High Level Summary, Secong is detailed. First report is developed using Union(4 union) , I am having 4 columns. The report is generating the data. I have used Navigation option on Client Column to move on to Second report. In Second report with in Filter i am using Prompted option. Due to some problem, the client value from first report is not passing to the second one. The second report is getting generated for all the clients.
    Normally i have used this Navigate option in other reports and that works fine. I have even tested with Union, it works. This time it is giving some trouble.
    Please, let me know whats going wrong.
    Thanks for the help.

  • Problem on developing SSRS report in a production environment

    Any problem could  be caused if have to develop SSRS report in a production environment ?
    If so, how it can be prevented?
    Thanks!

    Hi ,
    As per my understanding, Normally our environment setup contains Development,testing,preproduction,production and its varies from company to company.
    We develop SSRS report in development environment and after testing we deploy it to production report server.
    Development environment use development database for creating report like your database IP and credential will use development environment
    setup. and production environment use production database for creating report like your database IP and credential will use production environment setup.
    Thanks
    Neha Prajapati Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem.

  • I've checked my current plugins and it still shows Adobe Acrobat Version 7 for Netscape (7.0.9.50) I tried to do the update but I got an error - "Please tell Microsoft about this problem" "Send Error Report/ Don't Send".

    I've checked my current plugins and it still shows Adobe Acrobat Version 7 for Netscape (7.0.9.50)
    I tried to do the update but I get the same error each time - "Please tell Microsoft about this problem" "Send Error Report/ Don't Send".
    Also, do I need to Disable or Uninstall the Extension: "SEO For Firefox 3.3.4 as this was highlighted?
    == This happened ==
    Every time Firefox opened
    == When I try to do the update

    http://www.microsoft.com/mac/support
    http://answers.microsoft.com/en-us/mac/forum/macword?auth=1
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/microsoft-wor d-for-mac-2011-will-not-open-error/ecc42616-6f49-40bb-b8f5-e21c711ea359

  • Javascript Problem for Drill Down Action in SSRS Report when integrated to PPS 2010

    Hi all,
    I have a SSRS report which is integrated to PPS 2010(Performance Point Services) and it is having a drill down action through Go to URL action(I wrote javascript:void(window.open('xxxxx')) to open drill down report in new window).
    This report has 5 parameters and all are multiple valued. Drill down report is opening very well when I open the report form Report Manager for any number of parameters values selected. But when I integrate the same report is PPS and deployed to SharePoint
    then it is working only for 23 parameter values selected in PPS filters. If I select more the 23 values in PPS filters then the drilldown report is not opening.
    But it is working well in Chrome, I verified in IE and Mozilla, both browsers are having problem.
    When I look at Error Console of Mozilla, it is showing a javascript error as "Error: uncaught exception: ReferenceError: window is not defined" but the same report is working well if I select less than 24 filter values.
    Please provide me the solution
    Thanks in advance

    Hi Vasu,
    The issue might occur due to the Microsoft security update MS11-100 which limits the maximum number of form keys, files, and JSON members to 1000 in an HTTP request. Here, I suggest that you modify the Web.config file of the SharePoint site as follows:
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="10000" />
    </appSettings>
    If the SharePoint site uses the port 80, the web.config file of the SharePoint site is located in the C:\inetpub\wwwroot\wss\VirtualDirectories\80 folder.
    Reference:
    An ASP.NET request that has lots of form keys, files, or JSON payload members fails with an exception
    If the issue persist, please check whether there are any related errors in the Reporting Services log file which is located in <Drive>:\Program Files\Microsoft SQL Server\MSRSXX.<Instance Name>\Reporting Services\LogFiles.
    Regards,
    Mike Yin
    TechNet Community Support

  • The Problem is about Standard Back Button Function in Report Program

    The Problem is about Standard Back Button Function in the Report Program.
           In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
           My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program.  Thanks .

    This problem is solution.I call screen using T-code and submit report In PAI,at last return to PAI.That is OK.

  • The Problem is about Standard Back Button Function in the Report Program.

    The Problem is about Standard Back Button Function in the Report Program.
    In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
    My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program. Thanks .

    Hi,
    You can define your own PF-STATUS and in that assign the function code for BACK button anything except 'BACK'.
    The code would somewhat look like this:
    SET PF-STATUS 'TEST'.
    write : itab-col1,
               itab-col2.
    in the PF-STATUS 'TEST', assign the function code to BACK button as 'BCK'.
    Now in your program you can use the event AT USER-COMMAND.
    In this you can handle the functionality of BACK button.
    Hope this helps.
    Regards,
    Himanshu

  • The new FireFox, crashes every hour or so, then keeps crashing when I try restart it. Only restarting my computer helps, but then it will crash again. 90% of the time, there is a problem sending crash report(s).

    Since I downloading the new FireFox, it crashes every hour or so, then will keep crashing when I try restart it. Only restarting my computer helps, but then it will crash again. 90% of the time, when sending crash report(s), a mesage that there was a problem sending it appears. Please fix the problem and/or tell me what I can do.

    I found the solution here, it's really works!
    I'm glad I found this site.
    http://ituneserrorfix.blogspot.com/2013/11/how-to-fix-error-4013.html

  • Send an alert to notify ssrs report rendering is failed

    Hi Friends,
    I have one small requirement.
    When ever the report fails in rendering time or report is not working(due to some data issues), I have to
    send an alert to notify people this report is rendering failed or report is throwing some error.
    How can I do that, please help me on this..

    Hi Priya,
    SSRS unfortunately doesn't give much automatic altering when reports fail (for whatever reason).  There is however a good logging table you can use.  I use the below query to monitor failed subscription, however you easily modify it to find any
    failures:
    SELECT
    c.Name AS [ReportName],
    sb.[Description] AS [SubscriptionDescription],
    sb.DeliveryExtension AS [DeliveryType],
    sb.LastStatus AS [LastRunStatus],
    sb.LastRunTime AS [LastRunTime],
    c.Path AS [ReportPath],
    'http://YourSSRSServer/Reports/Pages/Report.aspx?ItemPath='+REPLACE(REPLACE(C.[Path],'/','%2f'),' ','+')+'&SelectedTabId=PropertiesTab&ViewMode=List&SelectedSubTabId=SubscriptionsTab' AS [SubscriptionLink],
    sc.ScheduleID AS [SQLAgentJobName],
    sb.SubscriptionID
    FROM
    ReportServer.dbo.ReportSchedule AS RS
    INNER JOIN ReportServer.dbo.Schedule sc ON rs.ScheduleID = sc.ScheduleID
    INNER JOIN ReportServer.dbo.Subscriptions sb ON rs.SubscriptionID = sb.SubscriptionID
    INNER JOIN ReportServer.dbo.[Catalog] c ON rs.ReportID = c.ItemID AND sb.Report_OID = c.ItemID
    WHERE
    (sb.LastStatus LIKE 'Failure%' OR sb.LastStatus LIKE 'Error%' OR sb.LastStatus LIKE '%not valid%')
    Once I find failures I send an email and enter them into a table (so I can monitor over time with another SSRS report).
    Thanks,
    UnoT

  • SSRS Report Data Caching Problem in Internet Explorer

    HI All,
    We have setup reporting server in native mode and have deployed SSRS reports on reporting server and mapped it to sharepoint page with report viewer web part.
    The changes on the data is not getting reflected on the report unless I close the browser completely and reopen the URL but at the same time for other rdl reportr, data is getting changed on same brower. so it doesn't seems to be the browser issue (not sure).
    Also the both reports are almost same.
    Any Idea Guys...whats happening with the report or how I can make it work to refresh data properly. I already have tried "Auto Refresh" option in rdl and it refreshes the browser but data doesn't gets refreshed. Also I had deleted cookies, clear the cache
    but it also did not work for me.
    Any help in this regard would be highly appreciated.
    Thanks,
    Nipendra Garg

    Hi Nipendra Garg,
    This might be caused by the refresh behavior of Internet Explorer. When visit a webpage with the same URL, IE may use an old version of this page which stored in browsing history.
    If you're calling the report from a URL, add &rs:ClearSession=True. This will cause the browser to refresh the report every time it's called.
    If you have any question, please feel free to ask.
    Thanks,
    Eileen

  • Landscape PDF Report Print Problem....?

    Dear All,
    I have campiled 6i report (Landscape PDF) in Report10g and successfully deploy on web through OAS 10g forms and report services.
    When we run this report on web it gives perfect landscape preview but it always prints as Portrait.
    Please guide us to get Landscape print.
    Thanks
    Rana

    Yes I did. We don't want this because some of our reports direclty goes to printer.
    So it wiil chang the format of thos reports.
    Kindly gives the proper solution so that it will not change other report's format.
    Regards
    Rana

  • Excel export sum of cells problem in ssrs report

    Hii all
    i have ssrs report when i export it to excel and try to take sum of block of cells , it just shows me row count 
    not sum of values which i have selected to sum..
    please have a look on this ..
    the data in cell is a text ..
    help please ..
    Dilip Patil..

    Hi Dilip,
    In Reporting Services, sum function returns the sum of all the non-null numeric values specified by the expression, evaluated in the given scope. If the values are text type values, we couldn’t sum the values. While we can count the values. For more details,
    please see:
    Sum Function (Report Builder and SSRS)
    After export the report to Excel format, we can also aggregate the values in Excel file. Based on my test, we can select a block of cells, then click the Quick Analysis icon to calculate the values. When the values are non-null numeric values, there are
    many calculation functions, including sum function. While the values are text type values, there is only count function under TOTALS option. So this is by design. There is no way to sum text type values, it doesn’t make sense.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Flash Video Encoder Quit Unexpectedly

    I have an Intel iMac and when I first loaded my Adobe Suite everything worked fine, but then the Flash Video Encoder stopped working with "Flash Video Encoder Stopped Unexpectedly" and I cannot get it to work again. I deleted the files and reloaded t

  • Ok... this should be a no brainer but I can't figure it out

    How do I set a different SMS notification tone?  The 8220 isn't defaulted to Lightspeed which is what I'm used to, but when I try to set that for texts it only gives me the option to set it as a ringtone.

  • Release strategy for PO, RFQ & Contract

    Hi, We have created release strategy for PO, RFQ & Contract. Characterisitc is created for Target Value for Header Area (CEKKO-KTWRT) for RFQ & Contract it working fine but for PO not triggering. what can be the cause. Pls guide.

  • Changing font while printing

    Hi all, I m developing report for Customer Ledger. When i print that report it is printing in very small font. I want to increase the font size so that it could be easily readable. I used PRINT-CONTROL 'SABLD' LINE 1. for bold font . But it is not wo

  • What does it mean when it says my redeem code is not active

    i type in my redemption code in and i get a msg that my code is not active someone help pls