Unhandled exception error when i open the reports in crystal reports 12.0

Hi All
When i open Reports in SAP Business one it is showing unhandled exception occured unknown user name and password
because of this i could not check my reports can any one help me on this?
Regards
Boopathi.T

Hi,
Have you used CR add-on for B1?  You may search within the forum to find the similar issue.
Thanks,
Gordon

Similar Messages

  • When editing a PDF document with fillable forms, I get an unhandled exception error when scrolling past the first page

    The first error is "An unhandled Win32 exception occurred in Acrobat.exe [4644]"
    A debug window comes up after this and I open Visual Studio (not my area of expertise), and a couple more messages come up that may be helpful.
    Unhandled exception at 0x625628db in Acrobat.exe: 0xC0000005: Access violation reading location 0x00000044.
    Then
    [Frames below may be incorrect and/or missing, no symbols loaded for AcroForm.api]
    This is on Windows 7, running Acrobat Pro version 9.5.5
    No new updates are available either.
    Any ideas where to start? This happens with a couple of documents, but not all that are being edited.

    I am also getting the same error for fill-able PDFs. Were you able to find an answer/solution for this problem?
    I am using Acrobat X Pro on Windows 7
    Any help would be appreciated..

  • Error when I open the new help in FCP7

    I get a error when I open the new help in FCP7:
    The Help Library requires JavaScript.
    If JavaScript is not enabled, you will not
    be able to view all the content.

    I have checked that Javascript was enabled in Safari (and it is).
    I can read the documentation in Safari online using this link: http://documentation.apple.com/en/finalcutpro/usermanual/
    I have now tried all the new/updated programs in the FCS3 suite they all have the same problem:
    The Help Library requires JavaScript.
    If JavaScript is not enabled, you will not
    be able to view all the content.
    Mikael

  • I get a error when i open the criteria of a Alert subscription

    Hi All,
    I get this strange error when i open the criteria of a Alert subscription.
    Below is the screen shot of the error and the contents of the alert.
    Can any one help.
    Note:  The following information was gathered when the operation was attempted.  The information may appear cryptic but provides context for the error.  The application will continue to run.
    Id='' -- Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).Id='' -- Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
    Microsoft.EnterpriseManagement.Common.DataAccessLayerException: Id='' -- Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.AddParameter(SqlCommand sqlCommand, String parameterName, ColumnDefinition columnDefinition, Object parameterValue, Boolean stronglyTypeParameter)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParsePredicateNextOperand(XmlReader criteriaReader, String parameterBaseName, SqlCommand sqlCommand, QueryDefinition queryDefinition, ColumnDefinition columnDefinition,
    Boolean stronglyTypeParameter)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.NextPredicateWithPropertyOperatorAndOperand(StringBuilder criteriaStringBuilder, SqlCommand sqlCommand, QueryDefinition queryDefinition, ColumnDefinition columnDefinition,
    String propertyName, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParsePredicateWithProperty(SqlCommand sqlCommand, QueryDefinition queryDefinition, Nullable`1 typeContextId, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParsePredicate(SqlCommand sqlCommand, QueryDefinition queryDefinition, Nullable`1 typeContextId, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParseCriteria(SqlCommand sqlCommand, QueryDefinition queryDefinition, Nullable`1 managedTypeIdContext, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParsePredicateGroup(SqlCommand sqlCommand, QueryDefinition queryDefinition, Nullable`1 managedTypeIdContext, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.ParseCriteria(SqlCommand sqlCommand, QueryDefinition queryDefinition, Nullable`1 managedTypeIdContext, XmlReader criteriaReader)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.ParameterizedCriteriaBuilder.CreateCriteriaTextAndParameters(SqlCommand sqlCommand, QueryDefinition queryDefinition, XmlReader criteriaReader, XmlNamespaceManager xmlNamespaceManager)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.SqlCommandBuilder.CreateCriteria(SqlCommand sqlCommand, QueryDefinition queryDefinition, String criteriaXml, Dictionary`2 parameterValues)
       at Microsoft.EnterpriseManagement.Mom.DataAccess.QueryRequest.CreateSqlCommandForSelectType()
       at Microsoft.EnterpriseManagement.Mom.DataAccess.QueryRequest.Execute(SqlNotificationRequest sqlNotificationRequest)
       at Microsoft.EnterpriseManagement.Mom.ServiceDataLayer.DataAccess.ExecuteQuery(String queryDefinitionName, String criteriaXml, Pair`2[] parametersAndValues, String inClauseColumnName, ICollection`1 inClauseElements)
    Gautam.75801

    Was any changes made to the Notifications Internal Library MP?
    Do you have a recent/latest backup copy for the MP? if yes, you may want to reimport it.
    Blog: http://theinfraguys.com
    Follow me at Facebook
    The Infra Guys Facebook Page
    Please remember to click Mark as Answer on the answer if it helps you in anyway

  • Get error when passing a server name to Crystal Report

    I am developing a desktop application using VS 2012 with CRforVS_13_0_9 and CRRuntime_64bit_13_0_10 installed.  The database is SQL Server 2012 Express.  I use SQL OLEDB in Crystal Report to connect the SQL database.  Here is part of the codes.
    Dim crTableLogoninfo As New TableLogOnInfo
    Dim crConnectionInfo As New ConnectionInfo
    Dim crTables As Tables
    Dim crTable As Table
    With crConnectionInfo
    .ServerName = Login.sServer
    .DatabaseName = Login.sDatabase
    .UserID = Login.sDBUserID
    .Password = Login.sDBPassword
    End With
    Try
    crTables = CReport.Database.Tables
    For Each crTable In crTables
    crTableLogoninfo = crTable.LogOnInfo
    crTableLogoninfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogoninfo)
    Next
    CrystalReportViewer1.ReportSource = Nothing
    CrystalReportViewer1.ReportSource = CReport
    I get an error "Failed to open connection -- Database vendor code 17" when I run a Crystal Reports through my application.  The problem is Crystal Reports does not like the server name which is passed.  The purpose for passing a server name is to connect to different server if needed.  I am not 100% sure the error occurs after VS 2012 or SQL Server 2012 express was updated.
    Any ideas how I can fix this problem?
    Thanks,
    John

    Hi John
    First, you want to check the error code in your database documentation. The error is being passed from the db client through the report engine totally unmodified. Googling the error will also be a good idea.
    And, seeing as you are using SQL Server 2012, make absolutely sure that the SQL Native 11 client is installed.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Failed to open the connection in Crystal Reports

    Hi All,
    I have Created One Crystal Report.
    When I Preview Report (Administration>Crystal Reports>Select Report-->Print and Preview),
    System displays the following error message.
    " Failed to open the connection."
    Where as when I view the same report directly from Crystal Designer (Administrator --> Crystal Reports Administrator --> Crystal Designer ). It is working fine.
    BR
    Dixit Patel
    Edited by: Dixit Patel on Dec 11, 2008 4:43 PM

    Hi Dixit,
    I've just found the same problem,
    could you let me know how to solved this problem?
    because at first I installed and run the report,
    it doesn't result any error message
    Thanks for your help
    regards,
    alvin

  • IAm getting the error when iam opening the query in the Designer

    hi
    I had opened the query in the DEvelopement and i had got the error message that Bex transport request is not available or not suitable
    I Got this error for the first time
    can any body help regarding this
    Please search the forum before posting a thread
    Edited by: Pravender on Feb 4, 2012 11:08 AM

    you need to cretae a new transport request to make changes to your query
    pls see Bex Transport request is not available

  • CDZHome Error when trying to connect universe from Crystal Reports XI R2

    I am getting the below error message when I am trying to connect a universe from Cyrstal Reports.
    CDZHome not found on server, IRAPPS437.WebIntelligenceProcessingServer
    I am using below versions:
    Universe - Business Objects XI 3.0 Enterprise Edition
    Crystal Reports - Cyrstal Reports XI R2 SP4.
    If you notice the error is related to Web Intelligence when I am not doing anything related to Web Intelligence. So I suspect that Cyrstal Reports XI R2 is not compatible with BO XI 3.1 or Vice Verse.
    Any input on this is appreciated.
    Cheers,
    Kanna

    Hello All, I am working on BO version migration. Presently we have BO XI 3.1 in which we have Java process through which we gets connected to BO server and generates an report.
    as we need to move to migrate BO version to SAP Business Objects BI Platform 4, we need to accomodate connecting to new BO server. I have upgraded all JAR which has been given by "SAP Business Objects BI Platform 4" installation still i am getting below exceptions and one of them is almost same as this POST so thought od posting my question here rather than opening an new POST.
    Caused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$ServiceConnection: Unable to connect to service CDZHome from server LONWS20055.WebIntelligenceProcessingServer via CMS LONWS20055.EUROPE.NOM:6400 (FWM 01006)

  • Error when i try to print in Crystal Report

    Hi , im student from mexico, i have a truble with Crystal Report so u can help me ? plz
    my problem with Crystal Report is when i try to print
    check my code
        repComandaGeneral.Load("C:\Users\Usuario\Documents\DozRES - comandas\RepTicketCGeneral.rpt", CrystalDecisions.Shared.OpenReportMethod.OpenReportByDefault)                repComandaGeneral.SetDatabaseLogon("root", "1234", "localhost", "dozres") ' Login base de datos
                    'Dim MiConexion As New ConnectionInfo
                    'Dim myTables As Tables = repComandaGeneral.Database.Tables ' Informe.Database.Tables
                    'MiConexion.ServerName = "192.168.1.254"
                    'MiConexion.DatabaseName = "dozres"
                    'MiConexion.UserID = "root"
                    'MiConexion.Password = "1234"
                    'For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                    '    Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                    '    myTableLogonInfo.ConnectionInfo = MiConexion
                    '    myTable.ApplyLogOnInfo(myTableLogonInfo)
                    'Next
                    repComandaGeneral.SetParameterValue(0, "Value")
                    repComandaGeneral.SetParameterValue("cm_id", cm_id)
                    repComandaGeneral.PrintToPrinter(1, False, 0, 0)
                    repComandaGeneral.Close()

    The "database vendor error 556" indicates that the query to the database returned with error 556.  It's vendor specific.  Look up your database vendor's documented error codes, to see what 556 indicates.
    Doing a bit of googling looks like the issue is that the ODBNC datasource does not exist. Remember that there are 32 bit and 64 bit ODBC datasources. If your app is 32 bit, the DSN must be 32 bit, if it is compiled as 64 bit the DSN must be 64 bit.
    See KBA 1505620 - How to create a 32 bit ODBC data source on a 64 bit Operating System
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error when exporting to other format from crystal report

    Hi,
    I have been facing an error "Method 'IRCREditableRTFExportFormatOptions_reserved5' on type 'CrystalDecisions.ReportAppServer.ReportDefModel.EditableRTFExportFormatOptionsClass' from assembly 'CrystalDecisions.ReportAppServer.ReportDefModel, Version = 11.0.3300.0, Culture-neutral, PublicKeyToken=692fbea5521e1304' is overriding a method that has been overriden." while trying to export the crystal report to another format (e.g. pdf and excel) from an application from a software vendor.
    For your information, the machine OS that is running the application is Window 7. Before I did the installation of the application, it already has Visual Studio 2005 and Crystal Report XI Release 1 installed in the Window  7 system. After I had the above error, I went to search more information on the website and found out that I need to upgrade to Crystal Report XI Release 2 from the search results. However, after I upgraded from Crystal Report XI Release 1 to Crystal Report XI Release 2 and apply service pack 6, I still faced the same error when I tried to export. I even tried to uninstall Visual Studio 2005 and Crystal Report XI Release 2 but I'm still facing the same above error while exporting. I also tried to reinstall the application from software vendor but the same error come out.
    Your help is highly appreciated. Thanks!!
    Regards,
    Jennifer

    Good morning Jennifer
    When you say:
    " I also tried to reinstall the application from software vendor but the same error come out."
    I wonder if the app you are trying to install is from a 3rd party vendor / developer? If it is, installing CR XI r2 (11.5) will not resolve the issue for you. From the error, the app was compiled with CR XI R1 (11.0) and the only way to get that app to use CR XI r2 will be to recompile it with CR XI r2 assemblies. E.g.; you will have to have access to the source code and then recompile the app, ensuring that you are referencing CR XI r2 assemblies. Or am I missing something here?
    Ludek

  • Get error when preview marketing documents by using crystal report layout

    Hi experts,
    I want to switch to using Crystal Report for marketing documents layout.  I have import Sales Quotation u2013 Generic (CR) layout which provided by XX-1.2.b1p package. I can preview added records but it doesn't work on drafting documents and saved drafts. The system prompt u201CThe system cannot find the path specifiedu201D and u201CObject reference not set to an instance of an objectu201D. On the same server, it was working fine in our other company database. I don't think this is the problem of database location setting in Crystal Report.  Can anyone give me advices, thanks!
    Regards,
    Ivan

    Hi! Rahul,
    Thank you for your reply first. Your method doesn't work in my case.  Can you tell me the steps of creating a new layout for added records and draft documents.  I have created a quotation layout which work with added records only, the steps has been show below and please comments, thanks.
    1. In Crystal Report > new blank report > create new connection > Choose "SAP Business One" > Select OQUT under "B1 Tables".
    2. Insert "CardName" field to report > Create DocKey@ parameter and  set it equal to DocEntry in select expert record function
    3. Click Add-ins > SAP Business One > Save > Choose company database and input manager password.
    Regards,
    Ivan

  • "View failed to load" error when I open Resources - Project Server 2013

    Hello,
    I get the following error when I open the Resources Page (I am using Project Server 2013):
    "The view failed to load. Press OK to reload this view with the default settings. Press Cancel to select another view"
    Help please.

    Hi,
    Is your environment up to date with the latest SP/CU?
    HAve you tried selecting another view?
    See those hotfix : 
    http://support.microsoft.com/kb/2760261/en-us
    http://support.microsoft.com/kb/2863881/en-us
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Error when I open "Mantein Dimension Property" - object variable

    I got the following error when I open the Mantein Dimension Property in the BPC Administration panel:
    "object variable or with variable not set"
    I am using SAP BPC 5.1 SP3 on Win2003 and MSSQL 2005 Enterprise.
    Any help is welcome.

    Hi,
       Usually, this error is comming from a wrong client installation or from a client which is not syncronized with the server version. Can you please check this?
    You can just try to reinstall the Admin client component (very fast) to see if this is solving your issue.
    Regards,
    Mihaela

  • N85--system error when i open n-gage!

    wat shud i do now? just a day back i got n85 and it says system error when i open the n-gage application.. so i deleted it!!
    now what??
    What's Worth Doing, Is Worth Doing Well!
    All "N-series" are incredible!

    the problem still persists... can anyone has the relevant experience to help in this matter.. i emailed nokia, their solution did not work too...
    What's Worth Doing, Is Worth Doing Well!
    All "N-series" are incredible!

  • I get a Debug error in SCOM 2012 R2 when i open the Active alerts Tab in Monitoring session

    Hi All,
    After Deployment of my SCOM 2012r2 when i open my Active alerts tab and Pending Management tab i get this Debug .NET frame work error as per the screen shot below. When i click continue i get the same error 3 times and SCOM Crashes.
    Can any one please help me out with this error.
    Screen shot:
    Below is the full content of the error:
    See the end of this message for details on invoking 
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException:
    Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Microsoft.EnterpriseManagement.Mom.Internal.UI.Knowledge.KnowledgeTransform' threw an exception. ---> System.IO.FileNotFoundException:
    Could not load file or assembly 'System.Data.SqlXml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
       at System.Xml.Xsl.XslCompiledTransform.Load(XmlReader stylesheet)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Controls.KnowledgeControl..ctor()
       at Microsoft.EnterpriseManagement.Mom.UI.StateDetailView.InitializeComponent()
       at Microsoft.EnterpriseManagement.Mom.UI.StateDetailView..ctor()
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ComponentFactory.CreateComponentWithDefaultConstructor(ConstructorInfo constructor, IContainer parentContainer, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ComponentFactory.CreateComponent(Type componentType, IContainer parentContainer, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.FrameworkServices.ServiceTableRecord.CreateComponent(Type componentType, String componentName, EventHandler`1 componentInitializeProcedure)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWinformViewConstructor.CreateView(Object parent, Type viewType, IViewParameters viewParameters)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateNonRecyclableView(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateAndShowViewCore(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.ShowViewOperation.Begin(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.BeginCreateDetailView()
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.SetCurrentViewState(ViewState state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplayController.OnCreateViewEnded(Object sender, CreateViewEndedEventArgs args)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Delegate.DynamicInvokeImpl(Object[] args)
       at System.Windows.RoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ViewDisplay.OnCreateViewEnded(Object sender, CreateViewEndedEventArgs args)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Delegate.DynamicInvokeImpl(Object[] args)
       at System.Windows.RoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.NavigationViewHost.RaisedCreateViewEndedEvent(Object view, Object controller, Object parentView, IViewParameters viewParameters)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.Microsoft.EnterpriseManagement.ConsoleFramework.IViewActivator.BeginShow(ShowViewContext showViewContext, Object parent, Object view, AsyncCallback callback, Object
    state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateNonRecyclableView(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.CreateAndShowViewCore(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.ShowViewOperation.Begin(ShowViewContext showViewContext)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.GenericWpfViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ConsoleViewDisplayService.OpenViewJob(Object sender, ConsoleJobEventArgs args)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleJobsService.RunJob(ConsoleJobDescription jobDescription)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(ConsoleJobDescription jobDescription)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(IComponent jobOwner, EventHandler`1 jobMethod, EventHandler`1 errorHandler, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(IComponent jobOwner, EventHandler`1 jobMethod, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowJobsService.RunJob(EventHandler`1 jobMethod, Object[] arguments)
       at Microsoft.EnterpriseManagement.ConsoleFramework.Wpf.ConsoleViewDisplayService.OpenView(String assemblyName, String typeName, String target, String item, String criteria, Object[] arguments)
       at Microsoft.EnterpriseManagement.Monitoring.Console.Common.ConsoleDisplayWrapper.OpenView(String assemblyName, String typeName, String target, String item, String criteria, Object[] arguments)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MomViewsDisplay.OpenMomView(IComponent component, ManagementPackView view, String target, String item)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MonitoringPage.OpenSelectedView(Boolean useLastSelectionFallback)
       at Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.MonitoringPage.AfterNodeSelected(Object sender, TreeViewEventArgs e)
       at System.Windows.Forms.TreeView.TvnSelected(NMTREEVIEW* nmtv)
       at System.Windows.Forms.TreeView.WmNotify(Message& m)
       at System.Windows.Forms.TreeView.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    Microsoft.EnterpriseManagement.Monitoring.Console
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.Console.exe
    System
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    System.Core
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
    Microsoft.EnterpriseManagement.Presentation.Core
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.DLL
    System.Windows.Forms
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System.Drawing
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    PresentationFramework
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
    WindowsBase
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
    PresentationCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.ConsoleFramework.DLL
    Microsoft.Practices.Prism.UnityExtensions
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Prism.UnityExtensions.DLL
    Microsoft.Practices.Prism
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Prism.DLL
    System.Configuration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xaml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
    System.Xml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.EnterpriseManagement.Monitoring.Console.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Monitoring.Console.resources.DLL
    Microsoft.EnterpriseManagement.UI.Foundation
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Foundation.DLL
    System.ServiceModel
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel/v4.0_4.0.0.0__b77a5c561934e089/System.ServiceModel.dll
    SMDiagnostics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/SMDiagnostics/v4.0_4.0.0.0__b77a5c561934e089/SMDiagnostics.dll
    System.ServiceModel.Internals
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ServiceModel.Internals/v4.0_4.0.0.0__31bf3856ad364e35/System.ServiceModel.Internals.dll
    Microsoft.Practices.Unity
        Assembly Version: 2.0.414.0
        Win32 Version: 2.0.414.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.Unity.DLL
    Microsoft.EnterpriseManagement.Presentation.DataAccess
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.DataAccess.DLL
    Microsoft.EnterpriseManagement.Presentation.Security
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Security.DLL
    Microsoft.EnterpriseManagement.CompositionEngine
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.CompositionEngine.DLL
    Microsoft.EnterpriseManagement.Presentation.Tuneup
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Tuneup.DLL
    Microsoft.EnterpriseManagement.Monitoring.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.Components.DLL
    Microsoft.EnterpriseManagement.Monitoring.DataProviders
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.DataProviders.DLL
    Microsoft.EnterpriseManagement.Management.DataProviders
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Management.DataProviders.DLL
    Microsoft.EnterpriseManagement.Presentation.DataProviders.Library
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.DataProviders.Library.DLL
    Microsoft.EnterpriseManagement.Presentation.Visual
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Visual.DLL
    Microsoft.EnterpriseManagement.Presentation.Controls
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Controls.DLL
    Microsoft.Practices.ServiceLocation
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Practices.ServiceLocation.DLL
    Anonymously Hosted DynamicMethods Assembly
        Assembly Version: 0.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/mscorlib/v4.0_4.0.0.0__b77a5c561934e089/mscorlib.dll
    Microsoft.EnterpriseManagement.Presentation.Visual.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.Visual.resources.DLL
    Microsoft.EnterpriseManagement.Presentation.Controls.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.Controls.resources.DLL
    PresentationFramework.Classic
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.classic/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.classic.dll
    System.ComponentModel.Composition
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.ComponentModel.Composition/v4.0_4.0.0.0__b77a5c561934e089/System.ComponentModel.Composition.dll
    System.Runtime.Serialization
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Serialization/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Serialization.dll
    Microsoft.EnterpriseManagement.Management.Transport
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Management.Transport.DLL
    Microsoft.EnterpriseManagement.CompositionEngine.Extensibility
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.CompositionEngine.Extensibility.DLL
    Microsoft.EnterpriseManagement.OperationsManager
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.OperationsManager/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.OperationsManager.dll
    Microsoft.EnterpriseManagement.Core
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.5.3070.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.Core/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.Core.dll
    Microsoft.EnterpriseManagement.UI.Console.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Console.Common.DLL
    Microsoft.Mom.UI.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.UI.Components.DLL
    Microsoft.Mom.UI.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.UI.Common.DLL
    Microsoft.Mom.Common
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.Common.DLL
    Microsoft.EnterpriseManagement.UI.Authoring
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Authoring.DLL
    Microsoft.Mom.UI.Components.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.Mom.UI.Components.resources.DLL
    System.Runtime.Remoting
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    System.Reactive
        Assembly Version: 1.0.10425.0
        Win32 Version: 1.0.10425.1
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/System.Reactive.DLL
    System.IdentityModel
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.IdentityModel/v4.0_4.0.0.0__b77a5c561934e089/System.IdentityModel.dll
    Microsoft.VisualStudio.Diagnostics.ServiceModelSink
        Assembly Version: 4.0.0.0
        Win32 Version: 10.0.30319.1
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Diagnostics.ServiceModelSink/v4.0_4.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll
    System.Web
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Web/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.dll
    System.Transactions
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.ConsoleFramework.resources.DLL
    Microsoft.EnterpriseManagement.UI.Administration
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Administration.DLL
    Microsoft.Mom.UI.Common.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.Mom.UI.Common.resources.DLL
    Microsoft.EnterpriseManagement.UI.Console.Common.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Console.Common.resources.DLL
    WindowsFormsIntegration
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
    Microsoft.EnterpriseManagement.UI.Controls
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Controls.DLL
    Microsoft.EnterpriseManagement.UI.ViewFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.ViewFramework.DLL
    PresentationFramework.Aero
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero.dll
    Microsoft.EnterpriseManagement.UI.Controls.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Controls.resources.DLL
    UIAutomationTypes
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationTypes/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationTypes.dll
    PresentationFramework-SystemXml
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
    UIAutomationProvider
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/UIAutomationProvider/v4.0_4.0.0.0__31bf3856ad364e35/UIAutomationProvider.dll
    PresentationFramework-SystemCore
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemCore/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemCore.dll
    Microsoft.EnterpriseManagement.UI.Reporting
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.Reporting.DLL
    Microsoft.Mom.Isam.Interop
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.Mom.Isam.Interop.DLL
    Microsoft.EnterpriseManagement.Core.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.5.3070.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Core.resources.DLL
    System.Data
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
    Microsoft.EnterpriseManagement.Runtime
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.EnterpriseManagement.Runtime/7.0.5000.0__31bf3856ad364e35/Microsoft.EnterpriseManagement.Runtime.dll
    Microsoft.EnterpriseManagement.UI.WizardFramework
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.UI.WizardFramework.DLL
    Microsoft.EnterpriseManagement.Monitoring.UnitComponents
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Monitoring.UnitComponents.DLL
    Microsoft.EnterpriseManagement.Presentation.DataAccess.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.Presentation.DataAccess.resources.DLL
    Microsoft.EnterpriseManagement.UI.Reporting.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Reporting.resources.DLL
    Microsoft.EnterpriseManagement.UI.Administration.resources
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/en/Microsoft.EnterpriseManagement.UI.Administration.resources.DLL
    PresentationFramework-SystemData
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemData/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemData.dll
    System.Numerics
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
    Microsoft.SystemCenter.Advisor.Common
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.SystemCenter.Advisor.UI
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.DiagramFx
        Assembly Version: 7.1.1000.0
        Win32 Version: 7.1.3840.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.DiagramFx.DLL
    Microsoft.SystemCenter.Advisor.UI.resources
        Assembly Version: 7.0.5000.9
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.Monitoring.SyntheticTransaction.UnitComponents.Wpf
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.EnterpriseManagement.Monitoring.ServiceLevel.Components
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Microsoft.SystemCenter.Visualization.Component.Library.WPF
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.1.10226.0
        CodeBase: file:///D:/Program%20Files/Microsoft%20System%20Center%202012%20R2/Operations%20Manager/Console/Microsoft.EnterpriseManagement.Presentation.Core.dll
    Accessibility
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    Microsoft.GeneratedCode
        Assembly Version: 1.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
    Microsoft.ReportViewer.WinForms
        Assembly Version: 11.0.0.0
        Win32 Version: 11.0.2100.60 ((SQL11_RTM).120210-1846 )
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.ReportViewer.WinForms/11.0.0.0__89845dcd8080cc91/Microsoft.ReportViewer.WinForms.dll
    System.Web.Services
        Assembly Version: 4.0.0.0
        Win32 Version: 4.0.30319.17929 built by: FX45RTMREL
        CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Web.Services/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    ============================
    Crash error and details:
    Error content:
    Problem signature:
      Problem Event Name: CLR20r3
      Problem Signature 01: 35IX4XXD43DM0DHGBOU3ZAVYZVCIPHYK
      Problem Signature 02: 7.1.10226.0
      Problem Signature 03: 522a58ed
      Problem Signature 04: mscorlib
      Problem Signature 05: 4.0.30319.17929
      Problem Signature 06: 4ffa57ca
      Problem Signature 07: 2aa4
      Problem Signature 08: 34
      Problem Signature 09: N3CTRYE2KN3C34SGL4ZQYRBFTE4M13NB
      OS Version: 6.1.7601.2.1.0.400.8
      Locale ID: 16393
      Additional Information 1: eb61
      Additional Information 2: eb613b33a7a25e3daead266f07bfdeb7
      Additional Information 3: 4405
      Additional Information 4: 4405e15216fd9fb173e974fe92b73f89
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    ==============================================================

    Hi,
    Just several ideas to be checked:
    1. Please, verify the prerequisites of Operations Console listed by the following link:
    http://technet.microsoft.com/en-us/library/dn249696.aspx
    2. Install all the SCOM related system updates.
    3. Clear SCOM Console cache:
    http://systemcenter.no/?p=215
    4. Try to clean up Ops Manager cache on SCOM Management server. To do this stop Microsoft Monitoring Agent service, navigate to SCOM installation path (by default, C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Server) and
    delete Health Service State folder. Start Microsoft Monitoring Agent service afterwards.
    5. If nothing helps, maybe try to reinstall SCOM Console.
    Igor Savchenko, VIAcode Consulting LLC (http://www.viacode.com/)

Maybe you are looking for