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?
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
Edited byFurqan AsgharMonday, February 11, 2013 6:42 PM
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
Edited byFurqan AsgharMonday, February 11, 2013 6:42 PM