1

この Advanced Find Fetch XML は、サービス活動が関連付けられているすべてのケースを取得します。

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
    <entity name="incident">
        <attribute name="title" />
        <attribute name="ticketnumber" />
        <attribute name="createdon" />
        <attribute name="incidentid" />
        <order attribute="title" descending="false" />
        <link-entity name="serviceappointment" from="wl_serviceactivitiesid" to="incidentid" alias="aa">
        </link-entity>
</entity>

サービス活動が関連付けられていないすべてのケースを表示するための Fetch XML または View ロジックは何でしょうか。の前にnotがありますか:

<link-entity>
4

1 に答える 1

1

私はこれがうまくいくかもしれないと思っています:

基本的に、サービス予定への外部結合を行い、主キーを持つアイテムを除外します。

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
    <entity name="incident">
        <attribute name="title" />
        <attribute name="ticketnumber" />
        <attribute name="createdon" />
        <attribute name="incidentid" />
        <order attribute="title" descending="false" />
        <link-entity name="serviceappointment" from="wl_serviceactivitiesid" to="incidentid" alias="aa" link-type="outer">
            <filter type="and">
                <condition attribute="wl_serviceactivitiesid" operator="null" />
            </filter>
        </link-entity>
</entity>
于 2013-03-01T13:42:29.137 に答える