我用下面的XML來獲取所有聯繫人。如何創建聯繫人同時讀取XML並導致
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>
<entity name='contact'>
<attribute name='fullname' />
<attribute name='emailaddress1' />
<order attribute='fullname' descending='false' />
<link-entity name='listmember' from='entityid' to='contactid' visible='false' intersect='true'>
<link-entity name='list' from='listid' to='listid' alias='aa'>
<filter type='and'>
<condition attribute='listname' operator='eq' value='myList' />
</filter>
</link-entity>
</link-entity>
</entity>
</fetch>
但是,我希望CRM也能夠生成線索(最好在同一個列表中)。這是可行的嗎?如果是這樣,如何?
聯繫人和信息都是動態CRM –
不同的實體難道他們來自同一個爸爸級繼承?或者至少其中一個是另一個的超級類? –