Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

crm 2011 creating a view of merged contacts

Can I create a view of the contacts that have been merged? I want to include active and inactive (sub ordinate) contacts as well in the view. I can search inactive contacts with the status 'Merged duplicates'. How do I find the master record in which it has been merged? Help is appreciated! :)

like image 258
CRM Dev Avatar asked Dec 22 '25 16:12

CRM Dev


1 Answers

CRM has two fields called "merged" and "masterid" which indicate if the record was merged and the master record id. Unfortunately, CRM doesn't expose these fields so you won't be able to create a view but you can create a SSRS report to display merged records if you want.

The following is an example about how to retrieve this information using fetchXML:

<fetch>
  <entity name="contact" >
    <attribute name="fullname" />
    <attribute name="merged" />
    <attribute name="masterid" />
    <filter>
      <condition attribute="merged" operator="eq" value="1" />
    </filter>
  </entity>
</fetch>

enter image description here

like image 116
Federico Jousset Avatar answered Dec 24 '25 10:12

Federico Jousset



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!