function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mike LeachMike Leach 

Retrieving Custom Fields on Standard Objects

How do I retrieve all custom fields on a standard object using the Migration Toolkit Metadata API?

 

The migration tool guide provides this markup for retrieving standard objects (SO), but indicates that custom fields on SOs must be retrieved individually.

 

 

<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>Account</members>
        <name>CustomObject</name>
    </types>
    <version>19.0</version>
</Package>

I'm looking for more of a wildcard approach to retrieve all fields. My goal is to run an Ant script daily to retrieve and backup all metadata. Is this possible?

 

cgosscgoss

There's no wildcard for custom fields. You have to name each one individually. To automate the process, you could maybe use the describeMetadata call (http://www.salesforce.com/us/developer/docs/api_meta/Content/meta_describe.htm) to populate your retrieve list.

WesNolte__cWesNolte__c

And then use Ant scripts to find all fields with "*__c"? 

esazenesazen

While I'm sure you are correct...this is ridiculous and a waste of time.  I don't understand why Salesforce doesn't support XML consistently between standard and custom objects.  Another why Salesforce makes it difficult for in-house developers to develop salesforce.com applications.  They want you to pay for appexchange apps.