我需要在对话框中显示与机会有关联的所有联系人。因此,当有一些机会有销售团队,利益相关者,所有者等等。像Active Connection Associate View这样的东西。我需要一个FetchXml或其他方法来查找以任何方式连接到当前打开的商机的所有联系人。
答案 0 :(得分:0)
你的fetchXML查询看起来很像这样:
<fetch mapping='logical' version='1.0'>
<entity name='myentity'>
<filter>
<condition attribute='myentityid' operator='eq' value='myvalue' />
</filter>
<link-entity name='secondentity' from='stsr_materialid' to='stsr_material_casinglookup' alias='c' link-type='outer'>
<attribute name='stsr_name' />
<attribute name='stsr_code_aisi' />
<attribute name='stsr_code_astm' />
<attribute name='stsr_code_din' />
<attribute name='stsr_code_e' />
<attribute name='stsr_code_en' />
</link-entity>
如果您需要更多帮助,请提供更多背景信息。