Display the report server error in the application

i have got an error while running the report from the application , the status of the report was "TERMINATED_WITH_ERROR" which come from the "REPORT_OBJECT_STATUS" built in function ,
when i go to the application server to the failed jobs i got :
Terminated with error: REP-1401: ??? ??? ???? ?? PL/SQL: 'cf_1formula'.
ORA-01403: ?? ??? ?????? ??? ??? ??????
the problem is i wan to display to the end user this error ORA-01403
not only "TERMINATED_WITH_ERROR" .....
please help me
thanks

Give a button in your web page with 'Check status' which on hitting, make an ajax call, to query the status table, and show the status in that page.
Hope this helps

Similar Messages

  • SQL reporting - An internal error occurred on the report server. See the error log for more details. (rsInternalError)

    I have created an RDL file programatically. When I execute the code I get the error as mentioned below:
    Error: Sub report cannot be shown.
    An internal error occurred on the report server. See the error log for more details. (rsInternalError)
    When I copy and paste the code of RDL file into new RDL file and try to preview the output I get correct result.
    Note: The new RDL file does not give any error if the output is seen using preview tab but it gives the error only when executed from report viewer or from internet explorer.
    Any Suggestion/feedback is highly appreciated.
    Thank You.
    The code of the sample RDL is shown below:
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
      <DataSources>
        <DataSource Name="DataSource1">
          <DataSourceReference>DataSource1</DataSourceReference>
          <rd:DataSourceID>fe4806ee-0358-4a87-b764-ac5de049545e</rd:DataSourceID>
        </DataSource>
      </DataSources>
      <BottomMargin>0.25in</BottomMargin>
      <RightMargin>0.25in</RightMargin>
      <PageWidth>11in</PageWidth>
      <ReportParameters>
        <ReportParameter Name="machine_id">
          <DataType>String</DataType>
          <Prompt>machine_id</Prompt>
        </ReportParameter>
        <ReportParameter Name="from_date">
          <DataType>String</DataType>
          <AllowBlank>true</AllowBlank>
          <Prompt>From Date</Prompt>
        </ReportParameter>
        <ReportParameter Name="to_date">
          <DataType>String</DataType>
          <AllowBlank>true</AllowBlank>
          <Prompt>To Date</Prompt>
        </ReportParameter>
      </ReportParameters>
      <rd:DrawGrid>true</rd:DrawGrid>
      <InteractiveWidth>8.5in</InteractiveWidth>
      <rd:SnapToGrid>true</rd:SnapToGrid>
      <Body>
        <ReportItems>
          <Table Name="table1">
            <DataSetName>Main_Report</DataSetName>
            <TableGroups>
              <TableGroup>
                <Header>
                  <TableRows>
                    <TableRow>
                      <TableCells>
                        <TableCell>
                          <ReportItems>
                            <Textbox Name="textbox2">
                              <rd:DefaultName>textbox2</rd:DefaultName>
                              <ZIndex>1</ZIndex>
                              <Style>
                                <TextAlign>Left</TextAlign>
                                <PaddingLeft>2pt</PaddingLeft>
                                <PaddingBottom>2pt</PaddingBottom>
                                <PaddingRight>2pt</PaddingRight>
                                <PaddingTop>2pt</PaddingTop>
                              </Style>
                              <CanGrow>true</CanGrow>
                              <Value>=Fields!syscode.Value</Value>
                            </Textbox>
                          </ReportItems>
                        </TableCell>
                      </TableCells>
                      <Height>0.25in</Height>
                    </TableRow>
                  </TableRows>
                  <RepeatOnNewPage>true</RepeatOnNewPage>
                </Header>
                <Grouping Name="table1_Group1">
                  <PageBreakAtEnd>true</PageBreakAtEnd>
                  <GroupExpressions>
                    <GroupExpression>=Fields!syscode.Value</GroupExpression>
                  </GroupExpressions>
                </Grouping>
              </TableGroup>
            </TableGroups>
            <Details>
              <TableRows>
                <TableRow>
                  <TableCells>
                    <TableCell>
                      <ReportItems>
                        <Subreport Name="subreport1">
                          <Parameters>
                            <Parameter Name="machine_id">
                              <Value>=Fields!machine_ip.Value</Value>
                            </Parameter>
                            <Parameter Name="syscode">
                              <Value>=Fields!syscode.Value</Value>
                            </Parameter>
                            <Parameter Name="from_date">
                              <Value>=Parameters!from_date.Value</Value>
                            </Parameter>
                            <Parameter Name="to_date">
                              <Value>=Parameters!to_date.Value</Value>
                            </Parameter>
                          </Parameters>
                          <ReportName>Holding_Summary_Multi_Period</ReportName>
                        </Subreport>
                      </ReportItems>
                    </TableCell>
                  </TableCells>
                  <Height>0.25in</Height>
                </TableRow>
              </TableRows>
            </Details>
            <TableColumns>
              <TableColumn>
                <Width>10.5in</Width>
              </TableColumn>
            </TableColumns>
            <Height>0.5in</Height>
          </Table>
        </ReportItems>
        <Height>0.75in</Height>
      </Body>
      <rd:ReportID>d0a1293a-e98c-4f75-9597-03426d2e7218</rd:ReportID>
      <LeftMargin>0.25in</LeftMargin>
      <DataSets>
        <DataSet Name="Main_Report">
          <Query>
            <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
            <CommandText>select account_syscode as syscode , 'display Name' as display_name , * from mars_customer_list
    where machine_ip = @machine_id</CommandText>
            <QueryParameters>
              <QueryParameter Name="@machine_id">
                <Value>=Parameters!machine_id.Value</Value>
              </QueryParameter>
            </QueryParameters>
            <DataSourceName>DataSource1</DataSourceName>
          </Query>
          <Fields>
            <Field Name="syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>syscode</DataField>
            </Field>
            <Field Name="display_name">
              <rd:TypeName>System.String</rd:TypeName>
              <DataField>display_name</DataField>
            </Field>
            <Field Name="customer_syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>customer_syscode</DataField>
            </Field>
            <Field Name="account_syscode">
              <rd:TypeName>System.Int64</rd:TypeName>
              <DataField>account_syscode</DataField>
            </Field>
            <Field Name="machine_ip">
              <rd:TypeName>System.String</rd:TypeName>
              <DataField>machine_ip</DataField>
            </Field>
          </Fields>
        </DataSet>
      </DataSets>
      <Code>Shared offset As Integer
    Public Function GetPN(reset As Boolean, pagenumber As Integer) As Integer
      If reset
        offset = pagenumber - 1
      End If
      Return pagenumber - offset
    End Function
    </Code>
      <Width>10.5in</Width>
      <InteractiveHeight>11in</InteractiveHeight>
      <Language>en-US</Language>
      <PageFooter>
        <ReportItems>
          <Image Name="image1">
            <Sizing>Fit</Sizing>
            <Left>8.875in</Left>
            <MIMEType />
            <Width>1.5in</Width>
            <Source>External</Source>
            <Style />
            <Value>bottom_right_logo.gif</Value>
          </Image>
        </ReportItems>
        <Height>0.5in</Height>
        <PrintOnLastPage>true</PrintOnLastPage>
        <PrintOnFirstPage>true</PrintOnFirstPage>
      </PageFooter>
      <TopMargin>0.5in</TopMargin>
      <PageHeight>8.5in</PageHeight>
    </Report>

    i created a SSRS report with shared datasets and uploaded rdl files and rsd files , while trying to map rdl file with data sets i am getting an error
    when i click on manage for .rdl file, its throwing error , as
    "An internal error occurred on the report server. See the error log for more details. (rsInternalError)
    Object reference not set to an instance of an object.
    please help me with this

  • An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024)

    An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help The profile for the user is a temporary profile. (Exception from HRESULT: 0x80090024) 
     while proview the report i will get this error am using sql server 2008R2,
    can u plesae hlep me out for this
     

    <Header>
      <Product>Microsoft SQL Server Reporting Services Version 2009.0100.1600.01 ((KJ_RTM).100402-1539 )</Product>
      <Locale>English (United States)</Locale>
      <TimeZone>W. Europe Standard Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\Logfiles\ReportServerService__01_30_2015_03_09_32.log</Path>
      <SystemName>WEGDACM1</SystemName>
      <OSName>Microsoft Windows NT 6.1.7601 Service Pack 1</OSName>
      <OSVersion>6.1.7601</OSVersion>
      <ProcessID>4880</ProcessID>
      <Virtualization>Hypervisor</Virtualization>
    </Header>
    rshost!rshost!5e4!01/30/2015-03:09:32:: i INFO: Currently registered url http://+:80/ReportServer_MSSQLSERVEREPORT/ on endpoint 2
    rshost!rshost!5e4!01/30/2015-03:09:32:: e ERROR: Failed to register url=http://+:80/Reports/ for endpoint 3, error=b7.
    rshost!rshost!5e4!01/30/2015-03:09:32:: w WARN: Endpoint 3 is enabled but no url is registered for vdir=/Reports, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportManager.
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: e ERROR: Error creating HTTP endpoint. System.Runtime.InteropServices.COMException (0x800700B7): Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7)
       at Microsoft.ReportingServices.HostingInterfaces.IRsUnmanagedCallback.CreateHttpEndpoint(RsAppDomainType application, String[] urlPrefixes, Int32 cPrefixes, String[] hosts, Int32 cHosts, Boolean wildCardPresent, String virtualDirectory, String
    filePath, Int32 authType, Int32 logonMethod, String authDomain, String authRealm, Boolean authPersist, Int32 extendedProtectionLevel, Int32 extendedProtectionScenario, Boolean enabled)
       at Microsoft.ReportingServices.Library.ServiceAppDomainController.SetWebConfiguration(RunningApplication rsApplication, Boolean enabled, String folder)
    rshost!rshost!65c!01/30/2015-03:09:32:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer_MSSQLSERVEREPORT/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVEREPORT\Reporting Services\ReportServer\ReportBuilder.
    rshost!rshost!1e30!01/30/2015-03:09:32:: i INFO: Derived memory configuration based on physical memory as 16776696 KB
    servicecontroller!DefaultDomain!1e30!01/30/2015-03:09:32:: i INFO: Recycling the service from the default domain
    rshost!rshost!1e30!01/30/2015-03:09:46:: i INFO: Application domain type WindowsService statistics: created: 7, unloaded: 7, failed: 0, timed out: 0.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:46:: i INFO: Appdomain:11 WindowsService_7 started.
    library!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    servicecontroller!WindowsService_7!1e30!01/30/2015-03:09:46:: e ERROR: Error initializing configuration from the database: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    resourceutilities!WindowsService_7!1e30!01/30/2015-03:09:47:: i INFO: Reporting Services starting SKU: Enterprise
    servicecontroller!WindowsService_6!1e30!01/30/2015-03:09:47:: i INFO: Service controller exiting.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 unregistered.
    appdomainmanager!DefaultDomain!1e30!01/30/2015-03:09:47:: i INFO: Appdomain:10 WindowsService_6 unloading.
    appdomainmanager!DefaultDomain!1f40!01/30/2015-03:09:47:: i INFO: AppDomain:10 0 pending unload(s)
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Exception caught while starting service. Error: Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration
    error. 
    library!WindowsService_7!2410!01/30/2015-03:09:47:: e ERROR: ServiceStartThread: Attempting to start service again...
    library!DefaultDomain!202c!01/30/2015-08:04:43:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:25:26:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    library!DefaultDomain!202c!01/30/2015-08:26:16:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: No DSN present in configuration file, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    The report server has encountered a configuration error. ;
    The above is my log file pls find it resolve my problem,am trying to add the encryption key to my configuration seetings it will through the error like The profile you were used is temporary profile.

  • Report Server - Error creating Service Application

    I am adding a report server to the farm for a customer.  This is a SharePoint 2010 Foundation Farm with one SQL server, one SharePoint server and I have just added a Report Server to the Farm.
    I installed SharePoint on the report server and added it to the farm. I then installed SQL 2012 Report Services SharePoint Integration Add-on and Database Engine to the Report Server.   I added the Report Services and Proxy via PowerShell and everything
    seemed to be working.   I then configured the Report Services Service Application with the Report database being on the report server and once I clicked submit it just spins and never completed the process. When I look at the event viewer I see three
    errors.
    Error 1
    The Execute method of job definition
    Microsoft.ReportingServices.Sharepoint.SharedService.Service.DoWork.TimerJob threw an exception.
    The HTTP service located at
    http://blablablaReportingServiceBackgroundProcessing.svc is too busy
    Error 2
    The value of UrlRoot in rsreportserver.config is not valid. The default value will be used instead.
    Error 3
    An exception occurred while updating address for connected app. The uri endpoint information may be stale.
    I also noticed that I can not access reporting services configuration manager.  When I go to the reporting service configuration manager and enter the report server as the server name and click find to select the instance I get an error.
    Unable to connect to the Report Server "ServerName"

    Thank you for moving this question to the correct board and looking into my question.
    Here is my setup and what I have done so far.
    SharePoint Server 2010 Foundations(Front End & App Server)
    Installed the SQL Reporting Services Add-On for SharePoint Products
    Installed Reporting Services - SharePoint
    SQL 2008 R2 Database Server (original database server for farm)
    Did nothing to this server just hold the existing content and config database.
    Report Server
    Installed SharePoint 2010 Foundations and attached it to the farm.
    Ran PowerShell Script to add SQL Reporting Service Application and Proxy
    Started SQL Reporting Service
    Installed SQL 2012 including the following components
    Database Engine Services
    Reporting Services - SharePoint
    Reporting Services Add-in for SharePoint Products
    Management Tools
    Created a new Reporting Services Service Application - created a new app pool and used the Report server name as the database for the reports 
    This is where it would seem to get stuck when I would try to create the service application  
    I am very familiar with sharepoint but have not added a report server to the farm before.  Can you tell me what it is trying to do when it created the service application
    Thank you for your time

  • Cannot connect to the reporting server error

    Hi,
    When trying to process an application, I get the error : "cannot connect to the reporting server".
    We have the BPC application server on a machine and DB, SSAS and SSRS (SQL 2008) on another machine.
    We don't have a named instance, we use the default one.
    If I connect to http://%SQLServer%/reports, it works.
    What could be the problem ?
    Thank you in advance.

    Hi,
    we had got the same problem. In the end we:
    - Installed RS on the same machine of BPC (Application Server) (please be careful to make a new db if you want to use the same DB Server)
    - Configured correctly the server manager to point the new ReportServer
    - Edited from SQL Server Management Console the tblAppSetInfo, in order to make the column of the ReportServer of all Application Sets to point to the new report server.
    - (not sure was needed) rebooted and restarted all the services
    - Tested it and it worked!
    HTH
    Daniele Tiles

  • Unable to connect to the report server error

    Hi all,
    I have formula.jsp file, in that i have all the parameters to connect with the Crystal Report server. I have Crystal Report Server 2008. While executing this jsp i got the following error,
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:843)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:143)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: 192.168.1.92. - Connection refused: connect-- Error code:-2147217387 Error code name:connectServer
         com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:93)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    But, in Crystal Report Server XI Relese 2, the formula.jsp file connecting with server and display the reports.
    Why it is not working for 2008 server alone? Please help for this. If you need the jsp i will update.
    Thanks,
    shiva

    Hi,
    We are facing a similar kind of issue, when trying to access/ view crystal report using JAVA sdks.
    Please find the below error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: Software caused connection abort: socket write error
    Error code:- 2147217387 Error code name: connectServer
    Please let us know if you were able to resolve this.
    Thanks in advance,
    Krishnam

  • BPC 75M - Modify Application error "Cannot connect to the Reporting Server"

    I have trouble with Modify Application, also in ApShell. Maybe you have a clue what it can be the problem.
    Configuration: single server BPC 7.5M SP3, Windows Server 2008 SP2, SQL Server 2008 SP2
    Installation user is a domain user.
    No errors during installation, no error in Server Manager diagnostics.
    But when I try to modify an Application from BPC Admin it gives an error for step "Make OLAP database and Journal/Audit reports. / Validate dimension formulas.".
    In tblLogs I see the error message:
    ==============[System Error Tracing]============== [System Name] :
    AdminServerHandler [Message Type] : ErrorMessage [Job Name] :  
    AdminApplicationHandler : ExecuteModIfyApplication [DateTime] :
    10/19/2010 1:19:13 PM [UserId] : MYDOMAIN\MYUSER
    [Exception] DetailMsg : {System.Exception: Cannot connect to the Reporting Server at
    OSoft.Services.Application.AdminMainServer.AdminApplicationHandler.SetChangeDimensionForAudit(String strAppset, String strApp, String  strUserID, Boolean blnIsChangedDimension, String& strErrMsg) at
    OSoft.Services.Application.AdminMainServer.AdminApplicationHandler.ExecuteModIfyApplication(String strAppSet, String strApplicationName, String strApplicationDescription, String strSourceApplicationType, String 
    strNewApplicationType, String strRateApplicationName, String
    strOwnerShipApplicationName, String strCurrencyConversionsCalculation, 
    String strCalculation, String strIntercompanyBookings, String  
    strUSEliminations, String strOpeningBalance, String strValidations,
    String strIntercompanyEliminations, DataTable dtDimensionList, Boolean 
    bReassignSQLIndex, Boolean bProcessApplication, Boolean bDeleteFact,
    String strChangeAppType, String strUserID, String strReportBackID)}
    ==============[System Error Tracing End ]==============
    Edited by: Alexandru Berindei on Oct 26, 2010 7:57 PM
    Edited by: Alexandru Berindei on Oct 26, 2010 7:58 PM

    There were problems accessing the web page   HTTP://server/reports
    Error message:   "Reporting services 2008 user does not have required permissions"
    It was possible to open the page  HTTP://server/reports with local administrator user and  I fixed this problem by performin following:
    - add Content Manager right to bpc installation user
    - disable UAC from Windows Control Panel  > User Accounts
    Still Modify Application gives the same "Cannot connect to Reporting Services".
    I tried:
    - check that BPC Installation User is part of Local Administrators
    - reboot server
    - reinstall BPC after disabling UAC
    - reinstall everything except the Windows Server 2008
    - I installed another computer with the same exact configuration but with a local BPC Installation User and it works.
    Have anyone installed BPC 7.5M SP3 on single Windows Server 2008 SP2 , with SQL Server 2008 SP2 and with BPC Installation user a domain user?
    Maybe you have an idea of what I should check next.
    Thank you,
    Alex

  • Displaying Report Server error in forms

    All,
    Is there a way in forms to display the error message from the reports server instead of the generic non informative message "FRM-41214 Unable to Run Report."
    thanks
    Jim

    Hello,
    test the following code :
    v_rep := RUN_REPORT_OBJECT(repid);
    IF Form_Failure THEN
    rro_error_code := ERROR_CODE;
    END IF;
    idx := INSTR(v_rep , '_' , -1) ;
    if (idx > 0 ) then
         v_repjobid := substr(v_rep , idx + 1);
         v_repserver := substr(v_rep , 1 , idx-1);
    end if;
    if rro_error_code = 41214 then
         web.show_document ('/reports/rwservlet/showjobid'||v_repjobid||'?server='||v_repserver||'&statusformat=xml','_blank');
    end if;
    Regards

  • [Forum FAQ] The Reporting Server cannot be reinstalled on a same SQL Server Reporting Service instance

    Symptom: Sometimes, when you want to reinstall the Reporting Server Role for Operation Manager 2012,
    but you may encounter an issue that the Reporting Server Role cannot be reinstalled after you successfully uninstall it. When you check the System Center Operation Manager installation log, you can find the following error as shown in Figure 1.
    Figure 1: Reporting Server Role cannot be reinstalled
    It seems that the SQL Server Reporting Service has not been configured properly. When you open Reporting Services Configuration Manager to check the settings, the settings seem fine though.
    Even you recreate Reporting Service Database, the error remains.
    After reviewing the OpsMgrSetupWizard.log, we get the following errors when wizard try to connect to SQL Server Reporting Instance (Figure 2).
    [07:24:05]:    Error:  :CheckHttpAddressResponse failed: Threw Exception.Type: System.Net.WebException, Exception Error Code: 0x80131509, Exception.Message:
    The remote server returned an error: (500) Internal Server Error.
    [07:24:05]:    Error:  :StackTrace:   at System.Net.HttpWebRequest.GetResponse() at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingComponent.CheckHttpResponseFromSRSUrl(String
    httpSite)
    Figure 2: Error Log -1
    It indicates the Reporting Service encounters an internal error. The Website cannot handle the request. So you may check the Reporting Service log which is located in C:\Users\Administrator.SCOM2012\AppData\Local\SCOM\LOGS
    and the following errors may be found (Figure 3).
    library!ReportServer_0-18!1448!03/30/2014-02:53:23:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException:
    Unable to load assembly Microsoft.EnterpriseManagement.Reporting.Security, Microsoft.ReportingServices.Diagnostics.Utilities.ServerConfigurationErrorException: The report server has encountered a configuration error.  ---> System.IO.FileNotFoundException:
    Could not load file or assembly 'Microsoft.EnterpriseManagement.Reporting.Security' or one of its dependencies. The system cannot find the file specified.
    File name: 'Microsoft.EnterpriseManagement.Reporting.Security'
    Figure 3: Error Log -2
    Reason: After the Reporting Server is installed on a SSRS instance, the Reporting Server of SCOM
    needs to modify the web.config and rsreportserver.config  file to add its own assembly to make the Reporting Server work. But it does not change it back when Reporting Server is uninstalled. So the assembly cannot be loaded and the SSRS cannot respond
    our requests.
    Resolution:  When the Reporting Server is installed, the old web.config and rsreportsserver.config
    files will be backed up to web.config1 and rsreportsserver.config1. So you just need to change the files’ name back, then try to install Reporting Server of SCOM again. Everything would go smoothly. 
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi AakashGhare,
    According to your error message, SQL Server 2008 databases are version 655. SQL Server 2008 R2 databases are 661. When you are trying to attach an 2008 R2 database (v. 661) to an 2008 instance and this is not supported. As other post, once the database has
    been upgraded to an 2008 R2 version, it cannot be downgraded. You'll have to either upgrade your 2008 SP2 instance to R2, or you have to copy out the data in that database into an 2008 database (such as using the data migration wizard).
    In addition, if you want to use a Windows Batch file code and command to automatically login to SQL Server, detach database and attach a new one database, there is a similar details about batch code for attaching database to a new database, you can refer
    to this article.
    http://notesbyparth.wordpress.com/2012/06/29/run-sql-commands-from-windows-batch-file-or-attachdetach-database-automatically-using-batch-script/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Get the report server details of a tfs instance

    HI
    I have tried the following method to get the report server attached to the tfs instance. but this returns no details. Please help on this.
    UritfsUri =
    newUri(uri);
    TfsConfigurationServerconfigurationServer
    =
    TfsConfigurationServerFactory.GetConfigurationServer(tfsUri);
    ReadOnlyCollection<CatalogNode>
    collectionNodes =
                    configurationServer.CatalogNode.QueryChildren(new[]
    { CatalogResourceTypes.ReportingServer,
    CatalogResourceTypes.ReportingConfiguration,
    CatalogResourceTypes.SqlReportingInstance}
    , true,
    CatalogQueryOptions.IncludeParents);
    Thanks
    Poornima

    Hi Pommrnima,  
    Thanks for your post.
    I tested this scenario in my TFS Server and received the same result. But the
    CatalogResourceTypes.ProjectCollection and
    CatalogResourceTypes.TeamProject can working fine to show the collection and team project details. It seems that
    ReadOnlyCollection<CatalogNode> tpcNodes = configurationServerNode.QueryChildren()
    cannot return the server level configuration information.  
    For this scenario, please submit it to Microsoft Connect Feedback portal at:
    https://connect.microsoft.com/VisualStudio. Microsoft engineers will evaluate them seriously. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Mail via the reports server through the portal

    we have a portal install on nt(in a few month it will be
    transport to unix (sun)).
    as i run report on reports with desttype=mail it works.
    but as it run from the portal it returns with rep-4202,4224.
    please guide me the procedure to make it work.
    thank you.
    ronen

    hello,
    from the metalink.oracle.com knowledge-base (Note:1085568.6) :
    "Make sure that you configure a mail profile on the reports
    server host box for the user that starts the reports server."
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • When i start the report server it say starting then it say shutting down

    i received this message everytime i start the report server
    starting then shutting down
    this happen after i did remove the server from the domain and re-join it again to the domain
    please help

    Hello,
    The best method to diagnoze this kind of problem is to activate the Reports Server trace
    Edit the file $ORACLE_HOME/reports/conf/<reports server name>.conf
    Modify it in order to have a line :
    <trace traceOpts="trace_all"/>
    Then, restart the reports server.
    The trace files will be generated in $ORACLE_HOME/reports/logs for Reports 9.0.2
    or in $ORACLE_HOME/reports/logs/<reports server name> for Reports 9.0.4
    Regards

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) Logon failure: unknown user name or bad

    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password 
    am using Windows integrated security,version of my sql server 2008R2
    I have go throgh the different articuls, they have given different answers,
    So any one give me the  exact soluction for this problem,
    Using service account then i will get the soluction or what?
    pls help me out it is urgent based.
    Regards
    Thanks!

    Hi Ychinnari,
    I have tested on my local environment and can reproduce the issue, as
    Vaishu00547 mentioned that the issue can be caused by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct, Please update the Username and Password and restart the reporting services.
    Please also find more details information about when to use the execution account, if possible,please also not specify this account:
    This account is used under special circumstances when other sources of credentials are not available:
    When the report server connects to a data source that does not require credentials. Examples of data sources that might not require credentials include XML documents and some client-side database applications.
    When the report server connects to another server to retrieve external image files or other resources that are referenced in a report.
    Execution Account (SSRS Native Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • SSRS 2008R2 Error: An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition within the database

    Hi,
    a big problem with our report server has appeared suddenly.
    We are running the SQL Server 2008 R2 with a Report Server. But a .
    I can connect to the Report Server Website and I can choose a report. But if I run the report, it will load endless without timeout message or other error messages.
    I looked in the Report Server Log and find out this confusing error messages:
    rshost!rshost!1680!01/21/2014-16:22:41:: e ERROR: WriteCallback(): failed to write in write callback.
    rshost!rshost!1680!01/21/2014-16:22:41:: e ERROR: Failed with win32 error 0x0079, pipeline=0x00000000004ED8D0.
    rshost!rshost!c20!01/21/2014-16:22:41:: e ERROR: HttpPipelineCallback::SendResponse(): failed async writing response.
    rshost!rshost!c20!01/21/2014-16:22:41:: e ERROR: Failed with win32 error 0x0079, pipeline=0x00000000004ED8D0.
    rshost!rshost!1680!01/21/2014-16:22:41:: v VERBOSE: HttpPipeline::DisconnectCallback: releasing pipeline=0x00000000004ED8D0.
    httpruntime!ReportManager_0-1!c20!01/21/2014-16:22:41:: e ERROR: Failed in BaseWorkerRequest::SendHttpResponse(bool), exception=System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception from HRESULT: 0x80070079)
       at Microsoft.ReportingServices.HostingInterfaces.IRsHttpPipeline.SendResponse(Void* response, Boolean finalWrite, Boolean closeConn)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
    library!ReportManager_0-1!c20!01/21/2014-16:22:41:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: RsWorkerRequest::FlushResponse., Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException:
    An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_MSSQLSERVER_0-1-130347907277948893.  ---> System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception
    from HRESULT: 0x80070079)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
       at ReportingServicesHttpRuntime.RsWorkerRequest.FlushResponse(Boolean finalFlush)
       --- End of inner exception stack trace ---;
    httpruntime!ReportManager_0-1!c20!01/21/2014-16:22:41:: e ERROR: Failed in BaseWorkerRequest::SendHttpResponse(bool), exception=System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception from HRESULT: 0x80070079)
       at Microsoft.ReportingServices.HostingInterfaces.IRsHttpPipeline.SendResponse(Void* response, Boolean finalWrite, Boolean closeConn)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
    library!ReportManager_0-1!c20!01/21/2014-16:22:41:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: RsWorkerRequest::FlushResponse., Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException:
    An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_MSSQLSERVER_0-1-130347907277948893.  ---> System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception
    from HRESULT: 0x80070079)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
       at ReportingServicesHttpRuntime.RsWorkerRequest.FlushResponse(Boolean finalFlush)
       --- End of inner exception stack trace ---;
    The last think I have done, is to grant a new user access to the report server website (by using the site options) and to the root folder (by using the folder options on ws).
    But the error must not relate to the new user. The server was not touched for several days before.
    Could you plz help me? I have no idea what to do. 
    Googling the whole day to find a solution without success

    We are having the same issue with our production reporting server and it doesn't look like a permission issue. We are running the SSRS service as a domain account with administrative privileges on the server. We are seeing the following entry in the log
    file:
    rshost!rshost!1254!01/30/2014-13:06:04:: e ERROR: WriteCallback(): failed to write in write callback.
    rshost!rshost!1254!01/30/2014-13:06:04:: e ERROR: Failed with win32 error 0x0079, pipeline=0x0000000003484370.
    rshost!rshost!1198!01/30/2014-13:06:04:: e ERROR: HttpPipelineCallback::SendResponse(): failed async writing response.
    rshost!rshost!1198!01/30/2014-13:06:04:: e ERROR: Failed with win32 error 0x0079, pipeline=0x0000000003484370.
    httpruntime!ReportManager_0-1!1198!01/30/2014-13:06:04:: e ERROR: Failed in BaseWorkerRequest::SendHttpResponse(bool), exception=System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception from HRESULT: 0x80070079)
       at Microsoft.ReportingServices.HostingInterfaces.IRsHttpPipeline.SendResponse(Void* response, Boolean finalWrite, Boolean closeConn)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
    library!ReportManager_0-1!1198!01/30/2014-13:06:04:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: RsWorkerRequest::FlushResponse., Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException:
    An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_0-1-130355206125382999.  ---> System.Runtime.InteropServices.COMException (0x80070079): The semaphore timeout period has expired. (Exception from HRESULT:
    0x80070079)
       at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
       at ReportingServicesHttpRuntime.RsWorkerRequest.FlushResponse(Boolean finalFlush)
    SSRS version is 10.50.4270.0
    Regards,
    Augustine.

Maybe you are looking for