CRM で過去 1 か月間アクティビティを変更していないすべてのアカウントを見つけることは可能ですか。試してみましたが、それが正しいかどうかはわかりません。誰でも私を助けてください。それが可能かどうかはわかりません。
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
<entity name="account">
<attribute name="name" />
<attribute name="primarycontactid" />
<attribute name="telephone1" />
<attribute name="accountid" />
<order attribute="name" descending="false" />
<link-entity name="activitypointer" from="regardingobjectid" to="accountid" alias="au" link-type="outer">
<filter type="and">
<condition attribute="modifiedon" operator="olderthan-x-months" value="1" />
</filter>
</link-entity>