0
CRMがオンラインであるため、連絡先がフェッチXMLレポートのアカウントに関連付けられていないアカウントレコードを取得する必要があります。 先進の検索で試しましたが、取得できませんでした。MS CRM Online:関連レコードがないレコードを取得する
おかげで、 プリヤ
CRMがオンラインであるため、連絡先がフェッチXMLレポートのアカウントに関連付けられていないアカウントレコードを取得する必要があります。 先進の検索で試しましたが、取得できませんでした。MS CRM Online:関連レコードがないレコードを取得する
おかげで、 プリヤ
これはアカウントが接触
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="account">
<attribute name="name" />
<attribute name="primarycontactid" />
<attribute name="telephone1" />
<attribute name="accountid" />
<order attribute="name" descending="false" />
<filter type="and">
<condition attribute="primarycontactid" operator="null" />
</filter>
</entity>
</fetch>
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="incident">
<attribute name="title" />
<attribute name="ticketnumber" />
<attribute name="createdon" />
<attribute name="incidentid" />
<attribute name="caseorigincode" />
<order attribute="title" descending="false" />
<filter type="and">
<condition attribute="customerid" operator="null" />
</filter>
</entity>
</fetch>
に関連付けられていないことを示していますFetchXMLでは期待通りに働いている...ありがとう。 ケースとカスタムエンティティの間にシナリオが必要です。 1対Nの関係を持つケースとカスタム。 これを達成する方法はありますか? –
正直言って、その検索から返されたアカウントは連絡先に関連付けられている可能性がありますが、アカウントには主要な連絡先がありません。 –
この回答は正しくありません。 Dynamics CRMでは、Fetch XMLを使用して要件を満たすことはできません。 –