Log On Failed. COMException (0x80000000): No Error.

Version of Crystal Reports Designer: 12.0.0683
Visual Studio 2005
OS Vista Ultimate
I have designed a report that uses an XML file as a data source.  In the deigner, the connection I am using is XML and Web Serivces.  I specify the XML and the schema file.
I have a Windows application that creates a dataset from an XML file and sets it as the report's data source. 
After I run VerifyDatabase I get the following error:
Log on failed., System.Runtime.InteropServices.COMException (0x80000000):
No error.
   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.VerifyDatabase()
   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.VerifyDatabase()
   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()
Here is my code:
        Try
            Dim PathToDB As String = mReportLog
            Me.crPrinterUse = New AXIARReports
            Dim ds As Data.DataSet = clsDataSet.ReportDataSet(PathToDB)
            Me.crPrinterUse.SetDataSource(ds)
            Me.crPrinterUse.Database.Tables(0).SetDataSource(ds.Tables(0))
            Dim SubReport As CrystalDecisions.CrystalReports.Engine.ReportDocument
            For i As Integer = 0 To Me.crPrinterUse.Subreports.Count - 1
                SubReport = Me.crPrinterUse.Subreports(i)
                SubReport.SetDataSource(ds)
                SubReport.Database.Tables(0).SetDataSource(ds.Tables(0))
            Next
            Me.crPrinterUse.VerifyDatabase()
            Me.crv.ReportSource = Me.crPrinterUse
        Catch ex As Exception
            MessageBox.Show("Error setting report data: " & ex.Message & vbLf & "Check the log file for more details.", _
                "Report Data Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            cGlobal.Log("Error setting report data: " & ex.Message & ", " & ex.InnerException.ToString)
            Throw New Exception(ex.Message)
        End Try
I ran the modules appliacation and noticed that the development machine version is slightly different from the deployed machine.
Version of file on the deployed machine: 12.0.0.840
Could this be causing my porblem?  If so, how do I solve this?
I also have VS 2008 installed on my machine.
Thanks,
Karen

Thanks for your reply Ludek.
I performed the steps in your blog.  Using the XML file that the data set creates with the embeded schema gives me no mapping errors.
I simplifiied my report to the simplest form, just a few fields in the details. I simplified the XML source file to just two records and found that the report is loading the data file in the connection used at design time.  I have checked off Save Data with Report.  So there must be some step that I am missing so that the report at runtime accepts the data set as the new data an not attempt to connect.
I will review my code again and see if there is something essential that I missed.  I will report back.
Karen

Similar Messages

  • Log on Failed error

    I've a report developed with DB2 9.7.5. It works fine in Crystal Report designer on my machine with local DB2 server with one of the database. It works fine from my ASP.NET application as long as I connect to same database. But if I chnage the database, I keep getting log on failed error. Then, if I change the report in crystal reports designer and connect to the other database and perform check dependencies, it starts working again.
    The report is developed using couple of stored procedures and it has multiple subreports. I verified that the stored procedures are exactly same on other database and the userID to connect to both databases has exact same privileges.
    Also, I get the same error when I try to connect another server with another copy of DB2 database. In this case, even if I use crystal reports designer to connect and save, it doesn't work.
    Following is my code when I try to connect. The interesting thing is call to subreport.VerifyDatabase() works fine. But call to m_rpt.VerifyDatabase() throws exception.
    ReportDocument m_rpt;
                    if (m_rpt.Subreports != null && m_rpt.Subreports.Count > 0)
                        foreach (ReportDocument subrpt in m_rpt.Subreports)
                            foreach (CrystalDecisions.CrystalReports.Engine.Table tbl in subrpt.Database.Tables)
                                CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                                logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                                logInfo.ConnectionInfo.ServerName = m_strDSN;
                                logInfo.ConnectionInfo.UserID = m_strDBUserID;
                                logInfo.ConnectionInfo.Password = m_strDBPassword;
                                tbl.ApplyLogOnInfo(logInfo);
                            subrpt.VerifyDatabase();
                    foreach(CrystalDecisions.CrystalReports.Engine.Table tbl in m_rpt.Database.Tables)
                        CrystalDecisions.Shared.TableLogOnInfo logInfo = tbl.LogOnInfo;
                        logInfo.ConnectionInfo.DatabaseName = m_strDBName;
                  logInfo.ConnectionInfo.ServerName = m_strDSN;
                        logInfo.ConnectionInfo.UserID = m_strDBUserID;
                        logInfo.ConnectionInfo.Password = m_strDBPassword;
                  tbl.ApplyLogOnInfo(logInfo);
                    m_rpt.VerifyDatabase();
    Edited by: kushalkaleshwari on Mar 5, 2012 5:54 PM

    Following is the exception:
    -          excep     {"Log on failed."}     System.Exception {CrystalDecisions.CrystalReports.Engine.LogOnException}
    +          [CrystalDecisions.CrystalReports.Engine.LogOnException]     {"Log on failed."}     CrystalDecisions.CrystalReports.Engine.LogOnException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    -          InnerException     {"\rNo error."}     System.Exception {System.Runtime.InteropServices.COMException}
    +          [System.Runtime.InteropServices.COMException]     {"\rNo error."}     System.Runtime.InteropServices.COMException
    +          Data     {System.Collections.ListDictionaryInternal}     System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
              HelpLink     null     string
    +          InnerException     null     System.Exception
              Message     "\rNo error."     string
              Source     "Analysis Server"     string
              StackTrace     "   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.VerifyDatabase()\r\n   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.VerifyDatabase()\r\n   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()"     string
    -          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          [System.Reflection.RuntimeMethodInfo]     {Void VerifyDatabase()}     System.Reflection.RuntimeMethodInfo
    +          base     {Void VerifyDatabase()}     System.Reflection.MemberInfo {System.Reflection.RuntimeMethodInfo}
              Attributes     FamANDAssem | Family | Virtual | HideBySig | VtableLayoutMask     System.Reflection.MethodAttributes
              CallingConvention     Standard | HasThis     System.Reflection.CallingConventions
              ContainsGenericParameters     false     bool
              IsAbstract     false     bool
              IsAssembly     false     bool
              IsConstructor     false     bool
              IsFamily     false     bool
              IsFamilyAndAssembly     false     bool
              IsFamilyOrAssembly     false     bool
              IsFinal     false     bool
              IsGenericMethod     false     bool
              IsGenericMethodDefinition     false     bool
              IsHideBySig     true     bool
              IsPrivate     false     bool
              IsPublic     true     bool
              IsSecurityCritical     true     bool
              IsSecuritySafeCritical     true     bool
              IsSecurityTransparent     false     bool
              IsSpecialName     false     bool
              IsStatic     false     bool
              IsVirtual     true     bool
    +          MethodHandle     {System.RuntimeMethodHandle}     System.RuntimeMethodHandle
    +          Non-Public members          
    +          Static members          
    +          Non-Public members          
              Message     "Log on failed."     string
              Source     "CrystalDecisions.CrystalReports.Engine"     string
              StackTrace     "   at CrystalDecisions.CrystalReports.Engine.ReportDocument.VerifyDatabase()\r\n   at WebUtilLib.ReportCacher2.ApplyLogonInfo(String strDSN, String strDBName, String strDBUserID, String strDBPassword, String strDBType)"     string
    +          TargetSite     {Void VerifyDatabase()}     System.Reflection.MethodBase {System.Reflection.RuntimeMethodInfo}
    +          Static members          
    +          Non-Public members

  • 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

  • Proxy Log On failed(Error Code 12154)

    Hello There!
    Can someone P'se help on this
    Installation
    WIN2K-Pro
    Oracle8iEE-1.7..
    Oracle9iAS
    Two different Oracle homes
    Problem
    I am trying to test for the first time my portal but i am receiving the following error messages
    1)when I type in <http://mysever/pls/dad> this is the result:
    Proxy log On failed.
    Please verify that you have specified correct connectivity information i.e.username, password & connect-string in the Database Access Descriptor
    Error-Code:12640
    Error TimeStamp:Mon, 06 Aug 2001 04:25:15 GMT
    Database Log In Failed
    TNS is unable to connect to destination. Invalid TNS address supplied or destination is not listening. This error can also occur because of underlying network transport problems.
    Verify that the TNS name in the connectstring entry of the DAD for this URL is valid and the database listener is running.
    2)Also when I try this <http://myserver/pls/admin/gateway.htm>the result is as follows:
    Mon, 06 Aug 2001 20:01:28 GMT
    No DAD configuration Found
    DAD name:
    PROCEDURE : gateway.htm
    URL : http://nt2kserver.learning.local:80/pls/admin/gateway.htm
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle HTTP Server Powered by Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.24
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=nt2kserver.learning.local
    REQUEST_METHOD=GET
    QUERY_STRING=
    PATH_INFO=/admin/gateway.htm
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=127.0.0.1
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    HTTP_HOST=nt2kserver.learning.local
    HTTP_ACCEPT=*/*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-us
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=
    Authorization=
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=

    Hello Teijo
    sorry about this, but I have checked on both of my two standalone servers(Running similar softwares and settings(host name...etc) independently) I can't see any service registerd by APACHE LISTENER.The only listener service available is for ORACLE8i under the oracle8iHome.
    The only running service under the 9iASHome is HTTPServer.During both installations I didn't encounter any problems,everything ended succefully.Can you p'se let me know if this sounds Ok to you?
    Hashim
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Teijo Lallukka ([email protected]):
    This looks like a tnsnames.ora issue. I copied a reply from a similar post:
    Since you have multiple Oracle homes, you are probably looking at the wrong tnsnames.ora. The reason why SQL*Plus is working is because it is being picked up from an Oracle Home where the correct tnsnames.ora resides. Here is a quick way to confirm this
    - Stop the Apache Listener service
    - Open a "Console prompt window"
    - Go to $IAS_HOME/Apache/Apache
    - Set TNS_ADMIN=Directory_with_correct_tnsnames.ora
    - Issue "tnsping your_dbalias_name" to verify that you can ping the database. If this does not work, then your tnsnames.ora is incorrect
    - If it works, startup Apache by issuing "start Apache -k start"
    - Try connecting to Portal thru your browser
    - This should work.
    - Post a reply if this does not work<HR></BLOCKQUOTE>
    null

  • 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) The user name or password is incorrect

    I am able to run the report fine in BIDS in the preview window, and it deployes fine.  When it goes to view the report in the browser, I get the following error.  There is no domain, I am using a standalone computer with SQL Server and SSRS on
    this one machine.
    Can anyone point to where I might configure the permission it is looking for?  thanks!  Steven
    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)
    The user name or password is incorrect
    Steven DeSalvo

    Hi StevenDE2012,
    Based on the error message "The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)", it seems that the Unattended Execution Account settings in Reporting Services
    Configuration is not correct.
    Reporting Services provides a special account that is used for unattended report processing and for sending connection requests across the network. Unattended report processing refers to any report execution process that is triggered by an event rather than
    a user request. The report server uses the unattended report processing account to log on to the computer that hosts the external data source. This account is necessary because the credentials of the Report Server service account are never used to connect
    to other computers. To configure the account, please refer to the following steps:
    Start the Reporting Services Configuration tool and connect to the report server instance you want to configure.
    On the Execution Account page, select Specify an execution account.
    Type the account and password, retype the password, and then click Apply.
    In addition, please verify you have access to the Report Server database by following steps:
    Go to SQL Server Reporting Services Configuration Manager, make sure the configuration is correct.
    Go to Database, Verify that you can connect to the database.
    Make sure you are granted public and RSExecRole roles.
    Reference:
    Configure the Unattended Execution Account
    Configure a Report Server Database Connection
    If the problem is unresolved, i would appreciate it if you could give us detailed error log, it will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • Upgrading to osx 10.6.8 fails. I see errors in the /var/log/install.log of "An unexpected error occurred while moving files to the final destination." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=5 "The operation couldn't be completed. Input/out

    upgrading to osx 10.6.8 fails. I see errors in the /var/log/install.log of "An unexpected error occurred while moving files to the final destination." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=5 "The operation couldn’t be completed. Input/out. Any thoughts on what is causing these errors and the upgrade failure?
    Thanks

    I have no idea what the specific error code means but input/output errors can sometimes mean a disk is failing. Make a couple of backups of all important data before doing anything else.
    Verify your startup disk using the First Aid tab in Disk Utility. If the disk needs repair boot from your Leopard DVD and repair your disk from Disk Utility under Utilities on the screen after you choose your language. Repeat the repair process until Disk Utility reports all is well.
    If Disk Utility doesn't find any errors you might want to try a new download of the update and keep a sharp eye on your HD for anything else that might indicate all is not well. Take special care to back up important data.
    If Disk Utility finds errors it would probably be a good idea to pay a visit to the Apple Store to have them check out your hard drive even if Disk Utility is able to repair the errors.

  • LOGGING IN FAILED DUE TO ERROR

    Computer will not let me log in because it gives a logging in failed due to error message.

    Hello Alison,
    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't help Reinstall the OS.

  • Active Directory Certificate Services setup failed with the following error: Overlapped I/O operation is in progress. 0x800703e5 (WIN32: 997)

    Hi,
    I am trying to install certificate services on a windows 2008 server (R2 ENT SP1) with a PCIe nCipher HSM module installed on it. The version of nCipher SW is = 11.30.  It is a RootCA, and I am trying to use a key that is already stored in the HSM (I
    have done this before with a PCI HSM (older HW version)).  I select “Use existing private key” and “Select an existing private key on this computer” on the wizard, then i change the CSP to nCipher and click on "search" the key I am looking for
    appears and I select that one.  I repeat, I have done this before and it works with a PCI HSM module.
    The installation is finished before being prompted to insert the operator cards, and it ends with two errors:
    <Error>: Active Directory Certificate Services setup failed with the following error: Overlapped I/O operation is in progress. 0x800703e5 (WIN32: 997)
    And:
    <Error>: Active Directory Certificate Services setup failed with the following error: The group or resource is not in the correct state to perform the requested operation.
    0x8007139f (WIN32: 5023)
    The servermanager.log says:
    1856: 2014-07-23 18:27:48.195 [CAManager]                 Sync: Validity period units: Years
    1856: 2014-07-23 18:27:48.928 [Provider] Error (Id=0) System.Runtime.InteropServices.COMException (0x800703E5): CCertSrvSetup::Install: Overlapped I/O operation is in progress. 0x800703e5 (WIN32: 997)
       at Microsoft.CertificateServices.Setup.Interop.CCertSrvSetupClass.Install()
       at Microsoft.Windows.ServerManager.CertificateServer.CertificateServerRoleProvider.Configure(InstallableFeatureInformation featureInfo, DiscoveryResult discoveryResult, ChangeTracker changeTracker)
    1856: 2014-07-23 18:27:48.928 [Provider]                  CAErrorID: 0, CAErrorString: 'Active Directory Certificate Services setup failed with the following error:  Overlapped I/O operation is in progress.
    0x800703e5 (WIN32: 997)'
    1856: 2014-07-23 18:27:48.928 [Provider]                  Adding error message.
    1856: 2014-07-23 18:27:48.928 [Provider]                  [STAT] For 'Certification Authority':
    And:
    1856: 2014-07-23 18:27:49.053 [CAWebProxyManager]         Sync: Initializing defaults
    1856: 2014-07-23 18:27:49.162 [Provider] Error (Id=0) System.Runtime.InteropServices.COMException (0x8007139F): CCertSrvSetup::Install: The group or resource is not in the correct state to perform the requested operation. 0x8007139f (WIN32: 5023)
       at Microsoft.CertificateServices.Setup.Interop.CCertSrvSetupClass.Install()
       at Microsoft.Windows.ServerManager.CertificateServer.CertificateServerRoleProvider.Configure(InstallableFeatureInformation featureInfo, DiscoveryResult discoveryResult, ChangeTracker changeTracker)
    1856: 2014-07-23 18:27:49.162 [Provider]                  CAErrorID: 0, CAErrorString: 'Active Directory Certificate Services setup failed with the following error:  The group or resource is not in the correct
    state to perform the requested operation. 0x8007139f (WIN32: 5023)'
    1856: 2014-07-23 18:27:49.162 [Provider]                  Adding error message.
    Has anyone experienced this before? Am I missing something here?
    Any help will be very appreciated
    Thanks in advance
    Best regards
    Alejandro Lozano Villanueva

    Hi, thanks for your support.
    I have been playing around a bit with some ncipher commands and found this:
    C:\Program Files (x86)\nCipher\nfast\bin>cspcheck.exe
    cspcheck: fatal error: File key_mscapi_container-1c44b9424a23f6cddc91e8a065241a0
    9aa719e4f (key #1): 0 modules contain the counter (NVRAM file ID 021c44b9424a23f
    6cddc91)
    cspcheck: information: 2 containers and 2 keys found.
    cspcheck: fatal error occurred.
    If I perform the same command on the original server (the server with the original kmdata folder and with the running RootCA services):
    E:\nfast\bin>cspcheck.exe
    cspcheck: information: 2 containers and 2 keys found.
    cspcheck: everything seems to be in order.
    Strange?
    Moreover, when I do a csptest.exe command (also on both servers, i find this)
    On the new server:
    C:\Program Files (x86)\nCipher\nfast\bin>csptest.exe
    nCipher CSP test software
    =========================
    Found the nCipher domestic CSP named 'nCipher Enhanced Cryptographic Provider'
      Provider name: nCipher Enhanced Cryptographic Provider
      Version number: 1.48
    User key containers:
        Container 'csptest.exe' has no stored keys.
        Container 'Administrator' has no stored keys.
      Machine key containers:
        Container '352dd28a-17cb-4c6f-b6e4-bf39bcf75db5' has a 2048-bit signature key.
        Container 'ROOTCA' has no stored keys.
        Container 'csptest.exe' has no stored keys.
    While in the old server:
    E:\nfast\bin>csptest.exe
    nCipher CSP test software
    =========================
    Found the nCipher domestic CSP named 'nCipher Enhanced Cryptographic Provider'
      Provider name: nCipher Enhanced Cryptographic Provider
      Version number: 1.40
    User key containers:
        Container 'csptest.exe' has no stored keys.
      Machine key containers:
        Container '352dd28a-17cb-4c6f-b6e4-bf39bcf75db5' has a 2048-bit signature key.
        Container 'ROOTCA' has a 2048-bit signature key.
        Container 'csptest.exe' has no stored keys.
    As you can see, the container called ROOTCA, which is the one that I use during the installation, says it has no stored keys.  While on the old server, it says it contains a key.  Why is this happening?  I dont know, I am copying the complete
    key management folder from one server to another and initialize the security world with that folder as I always do, and i dont have any errors during this procedure. 
    Do you know what could be the cause of this? or how can I fix this?  Thanks a lot, best regards.
    Alejandro Lozano Villanueva

  • CR4VS2010 Load Report failed - COMException (0x800001f5): The Report App...

    Hello,
    My company recently decided to start using the 64 bit CR VS2010.  Several machines have installed it and are working correctly, but others get Load Report failed - COMException (0x800001f5): The Report Application Server failed error when trying to render a crystal report to a new application window.  This happens when running the app through VS2010 or IIS.
    Another issue, is that once CR4VS2010 is installed, the ability to check-out .rpt files through TFS no longer works.  CR4VS2010 will open the .rpt, but manual check-out is not allowed for some reason.
    Machines are running Vista 64 bit Ultimate, VS2010, Crystal XI R2 SP4, and TFS.
    So far I have tried re-installing VS2010 and CR4VS2010, but still get the same issues.
    All help is greatly appreciated.
    Thank you.

    Hello,
    Please one question per post, makes it a lot easier to follow. Post your TFS question in a new post.
    Use Process Monitor and compare logs between working and non-working PC's. Typically either missing dependencies or permission issues. Look for Access Denied errors.
    Thank you
    Don

  • Cannot impersonate user for data source 'SMSDB'. --- Microsoft.ReportingServices.Diagnostics.Utilities.LogonFailedException: Log on failed. ---

    After Upgrading from SCCM 2012 Sp1 to SCCM 2012 R2 we are getting following error:
    System.Web.Services.Protocols.SoapException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException:
    Cannot impersonate user for data source 'SMSDB'. ---> Microsoft.ReportingServices.Diagnostics.Utilities.LogonFailedException: Log on failed. ---> System.Runtime.InteraopServices.COMException: The referenced account is currently locked out and may not
    be logged on to. (Exception from HRESULT: 0x80070775)
       at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ReportParameter[]& Parameters)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ReportParameter[]& Parameters)
    Microsoft.ConfigurationManagement.ManagementProvider.SmsException
    An error has occurred during report processing.
    Stack Trace:
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    System.Web.Services.Protocols.SoapException
    System.Web.Services.Protocols.SoapException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException:
    Cannot impersonate user for data source 'SMSDB'. ---> Microsoft.ReportingServices.Diagnostics.Utilities.LogonFailedException: Log on failed. ---> System.Runtime.InteropServices.COMException: The referenced account is currently locked out and may not
    be logged on to. (Exception from HRESULT: 0x80070775)
       at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ReportParameter[]& Parameters)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetReportParameters(String Report, String HistoryID, Boolean ForRendering, ParameterValue[] Values, DataSourceCredentials[] Credentials, ReportParameter[]& Parameters)
    Stack Trace:
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject)
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
       at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)

    HI,
    Check the SQL Reporting services account that is used, the one that you supplied when setting up the SQL Reporting Services point in the Configuration Manager 2012 console, it seems to be locked out.
    I believe it has been asked once before on the forums as well.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Backup to remote stage failed due to RFC error

    Hello!
    Recently I have problem to execute a successful online Backup to the external source.
    If I start backup from DB13 and analyse the work processes (Tcode SM50) I found the following:
    The responsible BGD-WP:
    status: On hold , reason: RFC, report: SAPLSSXP
    The dev_w8 trace retrieves the following error:
      Source RSCROSS10  Line 112.
      Error Code <b>DBIF_RSQL_SQL_ERROR</b>.
      Module  $Id: //bas/700_REL/src/krn/runt/absapsql.c#6 $ SAP.
      Function HandleRsqlErrors Line 761.
    The DB13-protocol retrieves the following information:
    BR0278E Command output of 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkhbgq.ftp -b -c put E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 /sap/DEVB/bdwkhbgq/SR3.DATA3':
    Connected to 192.168.200.3 Port 21.
    220-FTP server ready. 220 This is a private system - No anonymous login 331 User sapbackup OK. Password required 230-User sapbackup has group access to:  administrator    230-This server supports FXP transfers 230-OK. Current restricted directory is / 230-************************************************ 230-* Use SITE command to change client codepage:  * 230-* ie, site codepage [client codepage]          * 230 ************************************************ 200 TYPE is now 8-bit binary 200 PORT command successful 150 Connecting to port 2734 NiWrite error: -6, bytes to send: 32767 bytes written: 0
    BR0280I BRBACKUP time stamp: 2007-10-20 03.08.23
    BR0279E Return code from 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkhbgq.ftp -b -c put E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 /sap/DEVB/bdwkhbgq/SR3.DATA3': 1
    BR0222E Copying E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 to/from /sap/DEVB/bdwkhbgq/SR3.DATA3 failed due to previous errors.
    Can some one help me with this issue?
    Thank you very much!
    regards
    Thom

    Hello Eric,
    unfortunately it is not possible to do it, because I have only remote access to the SAP system.
    Is it possible to analyse the problem with the log files?
    If yes --> which logs should I post here?
    I went through the monitors in RZ20 and found a lot of errors/warning:
    <b>Database:</b>
    DBIF_SETG_SQL_ERROR
    ORA-03106: fatal two-task communication protocol error
    DB error 24909 in FET
    SQL error 3106: WP in reconnect status
    <b>Background:</b>
    Job SAP_COLLECT_FOR_PERMONITOR terminated
    Utilisation:
    100% > 95% Background work process load exceeds threshold
    BackgroundService: SystemWideFree BPWP: 1 WPs > 2 WPs Current value over threshold value.
    Abap ErrorInUpdate
    <b>Syslog</b> : BasisSystem
    Operating system call recv failed (error no. & >E5)
    The log file dev_cp retrieves the following information after execution of DB Check:
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main SAPXPG 700
    2007-10-23--14-42-27 : Before BtcXpgDetach
    > Function: BtcXpgDetach < Function: BtcXpgDetach Accept RFC connection from R/3 system
    2007-10-23--14-42-27 : Before RfcAccept
    2007-10-23--14-42-27 : RfcAccept returned OK
    security check switched OFF
    Install RFC call SAPXPG_START_XPG
    Install RFC call SAPXPG_START_XPG_LONG
    Install RFC call SAPXPG_END_XPG
    Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2007-10-23--14-42-27 : Before first call of RFCDispatch
    > Function: BtcXpgStartXpgLong
    2007-10-23--14-42-27 : Beginning of BtcXpgStartXpgLong
    > Function: BtcXpgStartXpgImportLong > Function: BtcXpgParam < Function: BtcXpgParam > Function: BtcXpgParam
    Line Text
    <No StdOut/StdErr output reported>
    Target log table is not identical to source
    ItGetLine terminated with NULL
    <Function: BtcXpgItTransfer > Function: BtcTrcReset < Function: BtcTrcReset Call mode: VIA RF
    Input arguments of BtcXpgStartXpg:
    My WP settings are:
    rdsip/wp_no_dia = 6
    rdsip/wp_no_btc = 3
    rdsip/wp_no_vb = 1
    rdsip/wp_no_vb2 = 1
    rdsip/wp_no_spo = 1
    Thank you!
    Thom

  • Windows 2008 R2 backup fails with event 521 error code 2155348001

    Windows Server 2008 R2 SP1.  Hyper-V role installed. 
    OS on drive C.  All VMs stored on Drive D.
    I am attempting to run a Bare Metal backup of the host system to a network share. 
    Drive D is not included in the backup job.  I am getting the following error:
    Log Name:      Application
    Source:        Microsoft-Windows-Backup
    Date:          1/10/2014 11:28:52 PM
    Event ID:      521
    Task Category: None
    Level:         Error
    Keywords:     
    User:          SYSTEM
    Computer:      SHAQTUS.scdl.local
    Description:
    The backup operation that started at '‎2014‎-‎01‎-‎11T04:08:50.683000000Z' has failed because the Volume Shadow Copy Service operation to create a shadow copy of the volumes being backed up failed with following error code '2155348001'. Please review the event
    details for a solution, and then rerun the backup operation once the issue is resolved.
    Reviewing event details, as suggested, does not offer any solution.
    I have tried the suggested solutions in other similar threads of increasing the timeout value with the registry entry. 
    This does not work.
    I have not tried reregistering the VSS writers manually, as the only links I have found are for server 2003/2008 (not R2) and explicitly state that they won’t work on higher versions of the OS, since they now utilize manifests and the manual procedure could
    cause problems for those servers. Haven't found similar procedures for 2008 R2.
    I have been able to narrow this down a bit.
    A Windows 2008 R2 SP1 server with Hyper-V installed – backup to a network share is successful;
    Install the DPM 2012 agent – same backup fails with the 2155348001 error.
    We use DPM 2012 to backup VMs, but DPM cannot perform a bare metal backup/restore of server and the 2012 version no longer has the DPMSRT feature. 
    I prefer to run Bare Metal Backup to a file server share.
    Stuck on this one.
    Rick

    Hi, 
    The issue is related to DPM, I would suggest you ask for help from DPM forums:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=dataprotectionmanager
    Regards, 
    Mandy
    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.

  • Windows 8 USB recovery fails with CTOERROR.flg error

    Windows 8 recovery using HP supplied USB recovery device failed with CTOERROR.flg error.
    [22:53:29.29] ChkErrBB.CMD : Detect some error during PININST_BBV.
    [22:53:29.31] ChkErrBB.CMD : Check c:\system.sav\logs\BurnBootWarn.log
    [22:53:29.31] ChkErrBB.CMD : or, check c:\system.sav\logs\BurnBootMerge.log
    I have tried all the scenarios which are described in this forum but no success.
    Can anyone suggest to which date should i reset the BIOS or anyother workarounds??
    I have run diagnostic tests on Memory and Disks and both are fine.
    * There is a big problem with the HP recovery manager which fails to recover windows. Many have reported in this forum and other forums....but HP has failed to attend this issue and fix the problem in their recovery manger or atleast show a workaround to restore the windows.
    My laptop was drastically slow after the reinstall from the HP support.....and now when i decided to reset and recover the windows.....it fails. Unfortunately my laptop is out of warranty.
    This is pushing me away from any HP and will never ever buy or recommend anyone to buy a HP product.
    History about previous issue with this laptop:
    Order # BDRN598901
    Order # BDTP356101
    * I had an issue with the HP recovery manager in creating recovery disc. I did contact the HP support as my warranty was still in place. They took my laptop and reinstalled the OS and sent it back to me. 
    Even after that i could not create a recovery disk and they send me a USB recovery device. 
    Service Order Product Service Event Order Status Estimated Delivery Date *MM/DD/YYYY Track this Shipment
    BDTP356101 USB - WINDOWS 8 64B RECOVERY KIT SW FULFILLMENT POSTAL DELIVERY GROUND Shipped 05/05/2014 POSTAL SERVICE (STANDARD)
    Service Order Product Service Event Order Status Estimated Delivery Date *MM/DD/YYYY Track this Shipment BDRN598901 HP ENVY 4-1115DX TouchSmart Ultrabook BOX PLUS PICKUP & REPAIR, 2 DAY SHIPPING Shipped 04/30/2014 FED-EX NEXT DAY (AFTERNOON)
    Thanks,
    KB29

    Set the date in BIOS to 1/02/2012. Save & Exit. Boot with Recovery, let it run through the process- but on the first reboot initiated by recovery enter BIOS again to insure date is still set to 2012. If not change it again, then let recovery resume.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Installation CS6 Production Premium failed, 4 warnings, 9 Errors

    I just tried to intall Photoshop, Illustrator, Audition  and Speed Grade from the Production Premuim Package on an almost brandnew Dell XPS 17 Core i7 Laptop under administrator-rights. The installation-process returned no fewer than 9 errors and 4 warnings. Illustrator wasn't installed at all.
    Below is the summary. Any Ideas? Could the pre-installed Photoshop Elements 9 und Premiere Elements have caused the problem?
    Antje H
    WARNING: DS013: Payload {93EE4FE8-6892-11DF-9F6A-6A14DFD72085} AdobeHelp 3.2.0.0 is already installed and the session payload {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0 has no upgrade/conflict relationship with it.
    WARNING: DS013: Checking payloads upgrade/conflict relationships : Failed with code 1
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {0C4E7429-E920-4125-980E-029A87AE0A4D} AdobeColorCommonSetCMYK CS6 4.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Program Files (x86)\Common Files\Adobe\Color\Profiles\Recommended\USWebCoatedSWOP.icc'(Seq 16)
    ERROR: DF012: Unable to find file(Seq 16)
    ERROR: DF024: Unable to preserve original file at "C:\Program Files (x86)\Common Files\Adobe\Color\Profiles\Recommended\USWebCoatedSWOP.icc" Error 32 Der Prozess kann nicht auf die Datei zugreifen, da sie von einem anderen Prozess verwendet wird.(Seq 16)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 16)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - AdobeColorCommonSetCMYK CS6: Install failed
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit)_AdobeIllustrator16de_DELanguagePack_x64: Install failed
    ERROR: DW050:  - AdobeIdeaPluginCS6 x64: Install failed
    ERROR: DW050:  - Adobe NPS Panel: Install failed
    ERROR: DW050:  - Adobe Illustrator CS6 Core (64 Bit): Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Illustrator CS6 Support: Install failed

    You at the very least have compromised file permissions at C:\Program Files (x86)\Common Files\Adobe\Color\Profiles\Recommended.  I would recommend reviewing your installation log in it's entirety.  You can find information on how to accomplish this at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • Backup Fails with Invalid RECID Error

    Hi All,
    Please help me to understand Caution -section
    below text is from
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    This solution is more difficult than solution 1:
    To create the control file with SQL*Plus:
       1. Connect to the target database with SQL*Plus. For example, enter:
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
       2. Mount the database if it is not already mounted:
          SQL> ALTER DATABASE MOUNT;
       3. Back up the control file to a trace file:
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
       5. Shut down the database:
          SHUTDOWN IMMEDIATE
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    Please help me to understand Caution -section
    Caution:
    If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.As per my understanding it says. If you don't open database with RESETLOGS option then there may be archived logs with log sequence number which is already archived on the source host. This may happen due to difference in RECIDs. Now when the database needs media recovery for this particular log sequence, you may provide any of them. So in this case, RMAN and Oracle will not be able to differentiate the two files and can accept any of the archived log files during recovery. Since the contents of two archived logs are different, because they are generated at different times and they contains different transactions. So, internally it corrupts your database.
    Rgds.

Maybe you are looking for

  • Unable to start "Printer Assistant" Officejet Pro 8600

    Printer Assistant and my 8600 have worked well for over a year.  Now I can't start "Printer Assistant".  This may have been triggered by an update to Win 8.1.  Others on the Discussion Board have been told to uninstall all HP programs, reboot, and th

  • ACS 4.2 to 4.2.1 Upgrade Questions

    I have been tasked to upgrade our four ACS servers from 4.2.1.15 to the latest version.  The ACS servers are applianced based.  I have browsed the download software page of cisco.com and have found this file: app/Acs_4.2.1.15.11.zip (ACS SE 4.2.1.15.

  • How to get Previous version of a Z-Program

    Hi All, Is it possible to view the previous version of an ABAP  Z Program. Example, I created a Z pgm on 1st of oct,a request got generated, i transported it to prd server. Next on 2nd of oct i added a new line of code in the same program & transport

  • Apps & Games

    for some years using symbian, i have not been unable to say i enjoy my phone due to lack of HD Apps and Games: i would love it if anybody could please help me find a better sites to download HD Games&Apps for my Nokia E6-00 Belle

  • Can't play video on TV

    Hi, I've got a 3G iphone, with the latest firmware, and a set of Component AV cables (http://store.apple.com/us/product/MB128LL/B). I plug them into the TV, goto the right video mode and try to play a TV show on my iphone. The sound from the show pla