[SalesForce] Migration Tool: “Concurrent modification from setup pages”

I'm trying to deploy changes from one sandbox to another using the Migration Tool, but I keep getting the following error: Error: objects/Contact.object(263,13): Concurrent modification from setup pages

What causes this error, and how can I deal with it?

  • I've verified that my Contact.object file is well-formed and valid
  • I have not been making any other changes simultaneously through the setup pages or by any other means
  • The location specified (263,13) is the start of a <fields> element for a custom field in the middle of the definition file. This picklist field already exists in the destination environment, but I am changing some of its values

Best Answer

We just experienced this same issue. We saw which field was causing the problem by the IDE reporting the error. The target org had a picklist field that was modified later than the source and had different values. We changed the target picklist values to match the source and the deployment then succeeded.

Related Topic