I'm encountering inconsistencies with FetchXML in Dynamics 365; it fails to load all the all attributes each time I run the query. Despite setting up FetchXML to filter and retrieve all attributes, it only returns a subset. Why is this ?

Namrata Zalewski (She/Her) 0 Reputation points
2024-06-26T05:05:57.9766667+00:00

Here is the query that I am using ADF copy activity:

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
  <entity name="@{item().tablename}">
    <all-attributes/>
    <filter type="and">
      <condition attribute="modifiedon" operator="ge" value="@{pipeline().parameters.start_date_par}" />
    </filter>
  </entity>
</fetch>
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,977 questions
Dynamics 365 Training
Dynamics 365 Training
Dynamics 365: A Microsoft cloud-based business platform that provides customer relationship management and enterprise resource planning solutions.Training: Instruction to develop new skills.
66 questions
{count} votes