Answered How can you track all metaverse updates?

  • Monday, February 11, 2013 5:49 PM
     
     

    Hi!

    I need to have a custom log for all metaverse updates, so, I created a log in the provision method for existing connectors. The problem is that every syncronization processes generates a log even though the metaverse haven´t changes.

    So, how can I know that the metaverse has changes? Is it possible?

All Replies

  • Monday, February 11, 2013 6:40 PM
     
     Answered
    One way could be to check all the MV attributes against the mapped CS attributes, if any single attribute is changed If(csentry["csattribute1"].Value != mventry["mvattribute1"].Value || csentry["csattribute2"].Value != mventry["mvattribute2"].Value || ... ... ...) { Log code; . . . } Regards Furqan Asghar
  • Monday, February 11, 2013 7:24 PM
     
     

    Ok,

    I'm going to implement a quick comparison with the previous log record. If there are any changes, I proceed with the log.

    Thanks for your help!