2013-03-01 71 views
1

這種先進的任何相關記錄查找獲取XML檢索有相關服務活動的所有情況:獲取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> 

會是怎樣的取XML或查看邏輯來顯示所有不包含的服務活動。 纔會有前:

<link-entity> 

回答

1

我想這可能工作:

基本上它的外連接到serviceappointment,然後排除有一個主鍵的任何項目。

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

好答案達里爾。 – Bvrce 2013-03-01 18:22:08

相關問題