答えて

1

これはアカウントが接触

<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> 
+0

に関連付けられていないことを示していますFetchXMLでは期待通りに働いている...ありがとう。 ケースとカスタムエンティティの間にシナリオが必要です。 1対Nの関係を持つケースとカスタム。 これを達成する方法はありますか? –

+0

正直言って、その検索から返されたアカウントは連絡先に関連付けられている可能性がありますが、アカウントには主要な連絡先がありません。 –

+0

この回答は正しくありません。 Dynamics CRMでは、Fetch XMLを使用して要件を満たすことはできません。 –

1
<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> 
関連する問題