Home SALESFORCEDeployment Retrieve Activity Custom Fields using Salesforce Package.xml

Retrieve Activity Custom Fields using Salesforce Package.xml

In Salesforce Acitivity contains two topcis.

One for Task and another for Events.

if you try to retrieve Task fields (Standard fields of Task object) then use the below:

<types>
<members>Task.Subject</members>
<name>CustomField</name>
</types>

if you try to retrieve Event fields (Standard fields of Task object) then use the below:

<types>
<members>Event.Type</members>
<name>CustomField</name>
</types>

if you try to retrieve Activities fields (Custom fields of Event/Task object) then use the below:

<types>
<members>Activity.CustomField__c</members>
<name>CustomField</name>
</types>

You may also like

Leave a Comment