Flex Objects disappearing automatically from QTP Object repository

Application : Flex 3
Automation Tool: QTP 10
Plug-ins installed - Flex 3.0.0
Whenever we try to add the flex objects in our application to QTP Object repository, the same is getting analyzed, added and gets disappeared automatically in seconds.
Could there be a reason for this, we tried to uninstall & reinstall all plug-in & QTP as well. Still issue persists.
Please help.

Hi
I am facing the same issue; but for our application. I am able to work fine with other Flex application, the issue is with only one application.
Is there any reason or solution to this. Please advice.
Thanks
Komala

Similar Messages

  • Emails disappear automatically from outlook 2007 exchange 2010

    Hello All,
    I have an urgent issue with my CEO , my environment contain exchange 2010 mailbox/HUB/CAS, CEO have an outlook 2007 and he face an issue with his emails, he received emails and before he open it disappear after few time, when i open the recovery deleted items
    i found the emails and they didn't appear in deleted item folder only on recovery deleted items, so any suggestions please.
    notes :
    No rules in outlook
    No Auto archive
    his computer have a FEP as antivirus.

    Hi,
    Can you see the missing emails from OWA?
    Have you tried to start Outlook in safe mode to check if any third-party add-ins caused this problem? To do this, press Windows key + R, type
    outlook.exe /safe in the Run dialog box and press Enter.
    If the issue would be gone in safe mode, please disable suspicious add-ins referring to the following article:
    http://office.microsoft.com/en-in/help/enable-or-disable-add-ins-in-office-programs-HA010034127.aspx
    Please also check if your virus scanner is integrated with your Outlook. If so, disable it to check the result.
    If possible, we can try to create a new mail profile in control panel to check if the issue persists:
    http://support.microsoft.com/kb/829918/en-us
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • I have two devices on my account : one iPhone5S and one iPhone5 both connected to iCloud. When I deleted 500 contacts on one device they disappeared automatically from the other. How can I get them back

    How can I get back deleted contacts from iCloud?

    If both phones were syncing contacts with the same account, that's normal.  iCloud syncs changes on one devices to all other devices sharing the account.
    If you don't have another backup source for your contacts, you may be able to restore them from your iCloud backup by following Winston Churchill's user tip here: https://discussions.apple.com/docs/DOC-4841.

  • Data from SOAP response not getting into Flex object

    I'm trying to get data from an ALM application we use(Collabnet TeamForge) using a SOAP webservice, and am running into a problem.  I should mention that I am new to both Flex, and webservices.
    I used the "Import Web Services" option in Flex Builder 3, and had it generate code for all operations in the WSDL.  Some of them work just fine.  However, there are several where the data from the SOAP response does not get into the Flex object. The senario that doesn't work is when the response contains a data type that extends another datatype.  In TeamForge, they have a type called TrackerSoapRow.  It extends FolderSoapRow, adding 3 fields.  The problem seems to be that in the response from TeamForge, the 3 fields defined in TrackerSoapRow are in the middle of the fields defined in FolderSoapRow.  I've debugged into it, and the problem occures in mx.rpc.xml.XMLDecoder.getApplicableValues( starting at line 2204 of XMLDecoded.as).  As I read the code, the only way a match can be found is if the fields in the response are in the exact same order as in the definintion.  When its processing the extended data type(  by a call to XMLDecoder.decodeComplexExtension ) at some point, one of the derived type's fields is encountered, and the process stops.
    I have called the service using soapui and verified that all the data I expect is in the response.
    As I mentioned, I'm new to web services.  So, I suppose its possible that the format of the data being returned from TeamForge is incorrect.  That they are not supposed to intermingle base and derived fields.  If thats the case, then I need to report this as a bug to Collabnet.
    All help is appreciated.
    Marc Robertson

    Not knowing any of the details about how you call a web service from OAF myself - I'd suggest you post on the proper forum for OA Framework questions: {forum:id=210}
    John

  • Business Object Repository ( B O R )

    Can some one please send me some data or links from where I can get data on Business object repository .

    Hi,
         SAP's Business Object Repository gives you an improved way to integrate business processes with external partners -- an increasingly necessary ability in the burgeoning e-marketplace economy.
    The age of e has had a profound effect on the IT industry. Not only has it changed our way of life, but it has also forced systems such as SAP to embrace a new era of openness. Marketplace demands for flexible automation of inter-business workflow and intelligent data exchange have forced formerly very proprietary ERP systems to begin helping customers integrate with other companies and with e-marketplaces data formats. For the first time, companies must expose their business processes to the outside world.
    In order to achieve this openness, SAP provides a technical infrastructure for the R/3 product, the Business Object Repository (BOR), which provides a simple yet powerful mechanism for external systems to trigger core business processes (such as placing an order) without concern for the underlying data structure. This level of abstraction is beneficial because it decouples R/3 from the external system. Either system is therefore free to change its internal business processes without affecting the other. SAP provides this technical infrastructure using a component-based view of its system. Each component or object provides a view of the data and the business processes that interact with that data. External systems can access this data via BAPI methods, which in turn access the underlying data structures of the system. It is the responsibility of the object and the BAPI to ensure the integrity of the data. This encapsulation of the data not only lends itself to external interfaces, but by using objects from within SAP, you can greatly reduce implementation, testing, and maintenance effort via the promotion of code reuse.
    Business Objects
    A business object is a problem-domain entity that you model in the SAP system, such as SalesOrder, BillingDocument, and Employee. The BOR stores all the objects in the R/3 system. The repository is a group of all the objects in the R/3 system. If the focus of objects is to model atomic business processes then it can be said that the BOR provides an enterprisewide view of business processes. By designing your ABAP code to fit your business processes you increase the ability of that code to flex when those processes are altered or integrated with external systems. This had made the object-oriented approach, which the BOR provides, essential to developing inter-business or e-business functionality.
    Attributes
    A business object is primarily represented by its attributes. You perform actions, such as create, update, or delete on the attributes by calling the methods of the object.
    Attribute NetValue of Object BUS2032 (SalesOrder).
    The majority of attributes are data-dictionary fields (for example, the NetValue attribute is defined by VBAK-NETWR). When you access an attribute of an object, you execute a SQL statement that retrieves the corresponding field in the database.
    Definition of attribute NetValue.
    You can also define attributes that do not exist in the data dictionary. These attributes are called virtual attributes. For example, a business partner has an attribute called BirthDate that is stored in the data dictionary. You can add a virtual attribute to the BusinessPartner object called Age. The age of a business partner is not stored in the database, but you can calculate it using the current date and the birth date of the business partner. If you implement the ABAP code that calculates Age, every time you access the Age attribute, the code executes and returns the business partners age.
    Definition of virtual attribute Age.
    This is an excellent example of one of the tools that a component-based approach provides. The external system does not need to concern itself with how to gather the data that it requires. The calling program needs only to access the attribute for the data to be returned. This is how business objects decouple the calling program (whether it be in R/3 or external to R/3) from the internals of R/3.
    The BOR lets you define multi-line attributes. These attributes define one-to-many relationships between an object and other fields. These objects can be defined in the data dictionary or can also be virtual attributes.
    An attribute that uniquely defines an object in the system is called a key attribute. In the case of a SalesOrder, the key attribute is VBAK-VBELN (the TableName and FieldName). It is not uncommon for an object to have several key fields. An example of this is object is the SalesArea (BUS000603) object type which has SalesOrganization (TVTA-VKORG), DistributionChannel (TVTA-VTWEG) and Division (TVTA-SPARTE) as key fields.
    Methods
    As mentioned earlier, the methods of an object represent the actions you take with objects attributes. An action in this example would include retrieving the status of one or more sales orders based on specific criteria. Methods are analogous to function modules in that they have importing and exporting parameters as well as exceptions, which you view by selecting a method and clicking on the toolbar button. This allows external systems (or internal developments) to pass and accept parameters from these methods just as if they were using function modules -- allowing external systems to call methods.
    In Figure 4, the methods shown with the green LED are BAPIs that are called specifically from external systems. They can, however, be called from within the system itself. The method shown with the stop sign is obsolete, but retained for backward compatibility, and should not be used in new developments.
    Methods of SalesOrder.
    Delegation and Subtyping
    One of the most complex concepts in object-oriented development is that of inheritance. This concept lets you extend core functionality by creating a child of the parent object that inherits all of its attributes and methods. For example, a Manager object is a subtype (child) of the Employee object. The Manager object has all the attributes of an Employee object (such as EmployeeID or Name) but also has some extra attributes (such as CompanyCar or ParkingSpace). SAP has not implemented inheritance in the BOR. However, it has provided subtyping and delegation, which offer an alternative way to extend R/3 functionality.
    Subtyping
    A subtype of an object is another object whose creation is based upon a parent object (see the preceding manager/employee example). The subtype maintains references to all the attributes and methods of its parent object. This means that any methods and attributes defined on the parent can be executed and accessed on the child object. I have often heard less-experienced developers refer to subtyping as copying the parent object. Although the effects can be similar, in order to achieve an understanding of some of the more advanced concepts, such as interface inheritance, it is important to realize that this is not accurate.
    If a subtype object were merely a copy of its parent, then all the code contained within the parent would be physically copied to the child. This is not the case. The subtype simply maintains references to its parents methods and attributes. The real difference is that the subtype lets you redefine these methods and attributes. You can easily add your own business rules to the parent methods by redefining the subtypes method. In the following example, I will show why this distinction is so important.
    Subtyping Case Study
    As an ABAP developer at Acme Tyres Pty. Ltd., you have been given the task of implementing some security measures for the companys online store. The requirement is simple: The password must be at least six characters long.
    Modifying SAP code leads to costly and complicated upgrades due to the modified code being overwritten by the newly delivered SAP code. Therefore, The challenge is finding a way of implementing the business logic without modifying SAP code.
    After some investigation, you realize that the method CHANGEPASSWORD (in BAPI) on the object KNA1 (Customer) is called when customers change their passwords. All you need to do is create a subtype of KNA1 and then redefine the CHANGEPASSWORD method adding the ABAP code to ensure that the password is a minimum of six characters long. It is of course not wise to change SAP code even assuming you have the passwords, which can be provided only be SAP. After the method is redefined, you just need to implement the business rules in ABAP.
    FIGURE 5 Redefinition of ChangePassword method.
    It is imperative that once you redefine the method it still behaves in a similar manner. You are allowed to add extra business logic, but the method must still change the password rather than do something unexpected, like delete a customer. This is particularly important when SAP is being accessed from external systems. The external system will expect a method to provide certain functionality. The developer should take care to ensure that this expectation is met.
    Delegation
    Now that you have implemented a new CHANGEPASSWORD method, you need to tell the SAP system to use the redefined version of CHANGEPASSWORD and not the version that was delivered on the KNA1 object. This is similar to object-oriented inheritance but the two concepts do have fundamental differences.
    Delegation for objects.
    By making an entry in the delegation table, you tell R/3 that before executing a method on KNA1, it should first check if that method has been redefined on the subtype. If it has, then the system executes the redefined method . If it hasn't, then the system executes the original method. Figure 7 illustrates this process.
    Execution flow for methods with delegation.
    This delegation is powerful because it lets you implement your own business logic without modifying any SAP code. As long as the objects are properly delegated, your method will be executed.
    Responsibility
    So far I have shown you two major components of an object, its attributes and methods. The difficulty in SAP is that it has traditionally been a data-driven, procedural-development approach. The BOR is not well understood by developers and managers and thus it is shunned by those that stand to gain the most from it. If managers and developers alike would take a formalized approach to development using business objects, significant savings in the development, testing, and maintenance phases would be achieved. This is due to the high level of re-use that business objects encourage.
    Having said this, when a powerful tool is put into the hands of an inexperienced person, chaos can (and usually does) ensue. If object-oriented design principals are not adhered to, then the resulting code has poor reusability and maintainability. Although an in-depth discussion of design issues is beyond the scope of this article, I will introduce in the following section one of the more fundamental design aspects of BOR programming: Responsibility.
    When you are given the task of creating a method or attribute on an object, one of the most important questions you should ask is, Does this attribute or method belong on this object? This question is fundamental to an object-oriented design and the answer can make a world of difference. Answering this question incorrectly has detrimental effects on the development effort resulting in methods and attributes strewn across myriad objects, with no coherent structure. If the methods and attributes were strewn across several objects, it would be more difficult to provide a uniform interface to external systems. If an external system wants to execute a particular business process in R/3, it may need to access several business objects, thus increasing coupling and reducing the layer of abstraction between R/3 and the external system.
    Lets take, for example, the requirement to be able to update a sales order. This is a common requirement and one that SAP usually implements for you. For the sake of the example, lets assume that SAP has not implemented this method. You will need to implement your own UPDATE method on one of the business objects. The question here is: Which object? This question is what I term as defining responsibility. Which object is responsible for having the UPDATE method on it? As shown in Figure 4, the answer in this cases is BUS2032 (SalesOrder). If you put it on any other object then you run the risk of no one else knowing of its existence. Next time there is a requirement to update a sales order, the developer will develop an additional method. You would then have two separate pieces of code that implement the same functionality. This duplication doubles development, testing, and maintenance requirements. On large projects, this can become a real problem and a maintenance and testing nightmare.
    SAP recognizes the challenges facing developers in the e-business era. It is aware that if it wants to take R/3 to the next phase, it needs to continue evolving the ABAP language and ensure that powerful development tools are available to SAP developers.
    Rising to the challenge, SAP has begun developing extensions to the ABAP language called ABAP objects (see "Introducing ABAP Objects," in the IntelligentERP feature archive for an excellent introductory article to ABAP objects by Jürgen Heymann and Horst Keller). These extensions will provide ABAP developers with a full range of object-oriented tools. Eventually, these new extensions will make BOR obsolete. However, the use of object-oriented development is sure to be an integral part of future SAP developments, regardless of where the world of e takes us.
    Reward points
    Regards

  • ECATT Object Repository

    Hello everyone,
    Im working with Mercury's QTP scripting against SAP. QTP gives the facility to the user to spy the properties of the objects (buttons, text boxes, radio buttons, etcc.), also the object repository stores all this properties.
    Now im trying to do the same using SAP ECATT. I realized that these tool also record the properties in a different way. Ecatt, saves the TCODE, Screen, Program Name, Field name, the thing here is that i would like to see if there is any way i can know where does this data come from?
    is there any table that saves this data?
    As far as i know the data is recorded in structures, and structures only exists while the program is running, but how sap get this data?
    If somebody know the logic how SAP obtains the data that will be really helpful.
    I pretty sure that there is not a table that record all this data (life isn't that easy), but i know there is a way i can follow to find the information i need.
    All suggestions are welcome,
    Thanx in advanced,
    Guillermo

    HI,
    To Achieve this you nee SAP Ecatt Upgrade 8.2 patch installed in your system.This Will Solve the Issue.
    Regards
      Jay

  • Version Control for BUSINESS OBJECTS repository

    Hi,
    Do we have any version control for business objects repository?
    Thanks

    Hi
    I am hoping someone can answer my Version Control queries. The LCM document is limited in its detail on VM.
    I am currently testing the BO LCM 3.1 and while it appears very easy to use especially for promotion, the Version Control Manager seems to be lacking in controls and a clear promotion path from dev to test to uat to prod.
    We have set up 2 identical environments for UAT and PROD.
    And using the Version Control part of LCM creating version control for a universe.
    Logged into VM in UAT
    We have selected a universe
    Added it to VM
    Made a change to the universe in Designer
    Exported it
    Then Checked it in
    Can now see 2 versions in the history and the VMS Version. All good
    I then click on swap system and log into PROD
    The VM history is also there in PROD
    I have a number of concerns and questions and can't seem to find the solution to them anywhere.
    1. VM seems to be lacking a controlled process from all the environments. Basically we want to deploy following this path;
    Dev - Test - UAT - PROD
    There does not seem to be any controls or security which would stop you from GET VERSION from the DEV environment and putting that straight into PROD. Obviously we would not want that to happen.
    We would only want to GET VERSION from UAT
    Similarly for UAT We would only want to GET VERSION from TEST
    And for TEST We would only want to GET VERSION from DEV.
    Granted, we currently only have 2 identical environments.
    But Is there controls that would stop you when in PROD from getting versions from any other system other than UAT?
    Also is there any reason why no promotion is required when using VM.
    This seems to negate the Promotion Function of the LCM
    Any advise would be greatly appreciated with this.
    Many thanks
    Eilish

  • Passing a Flex object to CFC

    I have no problem passing a query object to my Flex app and
    use it to populate a datagrid (arraycollection).... however, I want
    to use this same data to update the database when the user clicks
    on save, and instead of looping through each row (calling my
    remoteobject each time) is there a way I can format this
    information into an array, array collection or some other form of
    flex object and pass ti back to another cfc function to do the
    update?????
    I've read elsewhere that its possible to do with a
    remoteobject, however, my attempts were futile and I cannot find an
    example anywhere.
    I cant find a solution anywhere so and help would be
    appreciated.

    Here is a simple example I just wrote real quick. This is how
    I normally go about passing something an array of items to
    Coldfusion. Hope this helps.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.managers.CursorManager;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    [Bindable] private var apples:Array = new Array(
    {name:"Normal Apple", color:"Red"},
    {name:"Sweet Apple", color:"Ged"},
    {name:"Rotten Apple", color:"Brown"});
    private function createApples():void {
    AppleManager.Create_Apples(apples);
    private function createApplesResult(event:ResultEvent):void
    Alert.show("You have successfully added some apples into our
    system.", "System Notice");
    ]]>
    </mx:Script>
    <mx:RemoteObject
    id="AppleManager"
    destination="ColdFusion"
    source="cfc.AppleManager"
    endpoint="Your endpoint here"
    showBusyCursor="true"
    fault="CursorManager.removeBusyCursor();Alert.show(event.fault.message,
    'System Notice')">
    <mx:method name="Create_Apples"
    result="createApplesResult(event)"/>
    </mx:RemoteObject>
    <mx:Button x="10" y="10" label="Create Apples"
    click="createApples()"/>
    <mx:DataGrid left="10" right="10" top="40" bottom="10"
    dataProvider="{apples}">
    <mx:columns>
    <mx:DataGridColumn headerText="Apple Name"
    dataField="name"/>
    <mx:DataGridColumn headerText="Apple Color"
    dataField="color"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Application>

  • Business Object Repository (BOR) in CAF

    Hi,
    The Business Object Repository (BOR) is the object-oriented repository in the R/3 System. It contains the SAP business object types and SAP interface types as well as their components, such as methods, attributes and events.
    Is there something similar in CAF for custom developed business objects / entities.
    Thanks.
    Dick

    Hi Richard,
    Currently, the only way to view all of the deployed CAF services and related attributes is through the Service Browser.  There is nothing like the BOR.
    In Netweaver 2007, you will be able to publish CAF services to the Enterprise Service Repository (ESR) which will also contain all of the SAP Enterprise Services.  The ESR will be the single place to view all business objects and related services for an entire IT landscape.
    Best Regards,
    Austin.

  • Is there an Object Repository Helper in XI 3.1?

    Is there an Object Repository Helper administrative tool in 3.1? What about some of the other XI R2 administrative tools like instance manager, etc? I could only find Query Builder.
    I can't see how one can refresh all CMC reports with updated repository objects without the Object Repository Helper? It will be painful to refresh each report one by one in the CMC.
    Thanks.

    Anybody facing similar need to update all reports with updated repository object and would not want to do it one report at a time via CMC?  Any tools in XI 3.1 similar to Object Repository Helper?
    Thanks.

  • What do colors mean for object type in Business Object Repository browser?

    Hi,
    I am a new guy in SAP. I have a question. The object typies in BOR browser, there are kinds of colors, blue, light blue, pink, red,.. And also, for some object type, there is check mark beside them. What do these mean?
    Thank you for your help.

    Hi,
    The following information will be helpful for you.
    [Business Object Repository |help.sap.com/saphelp_40b/helpdata/en/7e/5e128f4a1611d1894c0000e829fbbd/content.htm]
    [Repository Browser |help.sap.com/saphelp_nw70/helpdata/en/60/d6ba75ceda11d1953a0000e82de14a/content.htm]
    [Business Object Repository|http://help.sap.com/saphelp_nw04/helpdata/en/c5/e4ac87453d11d189430000e829fbbd/frameset.htm]
    Assign Points if helpful.
    Thanks and Regards,
    Naveen Dasari.

  • Communicating between seperate flex objects

    Hello,
    I want to have an invisible flex object in the menu frame of
    my website and have a certain page, displayed in the other frame,
    in which there would be another flex control with all the necessary
    controls to control the invisible flex object. Is this possbile and
    how should I go about this?
    Thank you.

    yeah!!! it is possible, you can use the ExternallInterface
    class and some javascript functions for communicating between
    them.

  • Extract & Store pdf SD billing document from archivelink content Repository

    Hello friends,
    Can some one give me a hint on this :
    I have a requirement to create a program which will extract the pdf SD billing document from archivelink content Repository and will save pdf files on application servers's directory.
    We have business Object, Content Repository ID, Document type know for this.
    thanks
    ashish

    use FM : ARCHIVOBJECT_GET_TABLE to get the content in bin format..
    then use open dataset, transfer dataset, close dataset to store that in OS level.. task done..
    you can even use GUI_DOWNLOAD if you want to download it to presentation server.

  • Made automatic from the system to pick business area ?

    Hi
    For VAT GL account system is asking business area to entered manually, can this be made automatic from the system to pick business area ?
    Thank You
    Ramakanth
    Edited by: Ramakanth Ambala on Jul 24, 2008 10:07 PM

    Hi,
    I think there is no possibility of picking business area automatically in FI.
            But in CO u maintain the business area within controlling. This means that when you create cost center master records you need to specify the business area. CO objects such as, cost centers and internal orders aid account assignment, as the business area can be derived from the master data records. When you post primary costs to a cost center, the system determines the business area automatically from the cost center master data. This enables the costs to be assigned to the correct business area.
            Therefore, you do not need to manually set the business area in the posting document, as the system does this, and thus reduces the number of incorrect assignments to a minimum.

  • Agent disappeared automatically and it appeared in pending management after 6 months.

    We had a server (Windows server 2003 64 bit) which was installed and was working fine. Suddenly it disappeared automatically and it appeared in pending management after 6 months. We noticed it only when it came to pending management that the server disappeared
    from Agents managed TAB. When we checked the server and found that SCOM was uninstalled or disappeared or what ever. We re installed SCOM now and now from past 1 week we see that the agent is fine.
    We are using SCOM 2007R2 CU4 in our environment.
    I want to know the reason for this. Post installation of SCOM after this incident we checked the event logs and found the data for the last working of SCOM in that server and found the below events. I was not able to get that much old data in the SCOM Management
    server. But got the data from the Agent.
    Screen shot:
    ===========================
    Event id: 21033
    103
    101
    21403
    21402
    5399
    1000
    45
    Below are the contents of the event log
    21033:
    ========
    The Management Group CINSCOM was removed from the Microsoft Operations Manager Agent.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    =======================================================================
    Event id: 103
    ==========
    HealthService (2912) Health Service Store: The database engine stopped the instance (0).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    ======================================================================
    Event id:101
    =========
    HealthService (2912) The database engine stopped.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    ==========================================================================
    Event id :21403
    ============
    The process started at 12:22:31 PM was terminated because the HealthService requested the workflow to stop, some data may have been lost.
    Command executed: "C:\WINDOWS\system32\cscript.exe" //nologo "C:\Program Files\System Center Operations Manager 2007\Health Service State\Monitoring Host Temporary Files 112\4723\AD_Replication_Partner_Op_Master_Consistency.vbs"
    cinmlgc25.e2k.ad.ge.com false
    Working Directory: C:\Program Files\System Center Operations Manager 2007\Health Service State\Monitoring Host Temporary Files 112\4723\ 
    One or more workflows were affected by this.  
    Workflow name: AD_Replication_Partner_Op_Master_Consistency.Monitor 
    Instance name: CINMLGC25 
    Instance ID: {E49A1DCD-88C3-5615-102B-E8321298AEFF} 
    Management group: CINSCOM
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    ================================================================================
    Event id:21402
    =============
    Forced to terminate the following process started at 12:22:31 PM because it ran past the configured timeout 120 seconds.
    Command executed: "C:\WINDOWS\system32\cscript.exe" //nologo "C:\Program Files\System Center Operations Manager 2007\Health Service State\Monitoring Host Temporary Files 112\4723\AD_Replication_Partner_Op_Master_Consistency.vbs"
    cinmlgc25.e2k.ad.ge.com false
    Working Directory: C:\Program Files\System Center Operations Manager 2007\Health Service State\Monitoring Host Temporary Files 112\4723\ 
    One or more workflows were affected by this.  
    Workflow name: AD_Replication_Partner_Op_Master_Consistency.Monitor 
    Instance name: CINMLGC25 
    Instance ID: {E49A1DCD-88C3-5615-102B-E8321298AEFF} 
    Management group: CINSCOM
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    =================================================================================
    Event id 5399
    ==========
    A rule has generated 50 alerts in the last 60 seconds.  Usually, when a rule generates this many alerts, it is because the rule definition is misconfigured.  Please examine the rule for errors. In order to avoid excessive load, this rule will be
    temporarily suspended until 2013-10-21T12:32:11.0039243-04:00. 
    Rule: Unexpected_SAM_Failure_5_Rule 
    Instance: CINMLGC25 
    Instance ID: {E49A1DCD-88C3-5615-102B-E8321298AEFF} 
    Management Group: CINSCOM
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    ===================================================================================
    Eventid: 1000
    ==============
    AD Replication Partner Op Master Consistency : The script 'AD Replication Partner Op Master Consistency' failed to executethe following LDAP query: '<LDAP://loumlgc02.e2k.ad.ge.com/DC=e2k,DC=ad,DC=ge,DC=com>;(&(objectClass=infrastructureUpdate)(fSMORoleOwner=*));fSMORoleOwner;Subtree'.
    The error returned was 'Table does not exist.' (0x80040E37)
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    ======================================================================================
    Event id:45
    ============
    AD Replication Partner Op Master Consistency : Unable to determine infrastructure Op Master on domain controller 'loumlgc02'.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    =======================================================================================
    Can any one please help...

    Hi,
    Based on my understanding, that you re-installed your SCOM, and now everything works fine. You want to know that why your SCOM run into problem 6 months before, right?
    According to the event logs in your agent, we could not tell what happened to your Operation manager. What I can see is that the management group was removed from the agent then. And there are some errors when moniored by the former management group.
    I would like to suggest you check out what actions have you do on your former management group 6 months before. Maybe we can check the operation manager logs on your management server.
    Regards,
    Yan Li
    Regards, Yan Li

Maybe you are looking for

  • Lion 10.7.2 NO SOUND

    Hi, I updated yesteday my MacBook Pro 2011 to the new 10.7.2 version and now the system doesn't reconize anymore  the sound. If I go into audio system settings, no audio is detected and the volume controls do not works. I tried to modify the com.appl

  • Is there a way to create favourites in a chm file that was converted from a WebHelp file?

    I am using RH 11. We generally output our help projects to WebHelp, but we still have a few .chm outputs. Marketing has provided us with a new branding for our Help projects. We implemented the new skin for the WebHelp and then applied this skin to t

  • Setting the correct content type

    Hi, We store files in a database and the actual uploading and retrieving process works very well. However, when serving a request for a file I would like to set the content type the browser can read. An example: a httpservletRequest header "accept" c

  • TcEmailNotificationUtil/sendEmail(Vector pvToAddress) problem

    Hi, I am using sendEmail(Vector pvTOAddress) function of tcEmailNotificatiionUtil to send email to a list of email addresses. But this function is throwing some strange exception as provided below: 2009-09-18 13:31:25,095 ERROR [XELLERATE.REQUESTS] C

  • Can't Delete Troublesome App from Pre

    I'm sorry guys, but I haven't seen a posting or anything similar to this anywhere. I rarely use forums, but I've seen alot of intelligent posts on here, and I'm hoping you can help. I recently had my phone replaced, sadly for the third time (so I've