[SalesForce] Error when inserting users using Data Loader

I'm trying to insert users pulled from one org to another org using Data Loader. The user CSV file has the Federation Id as column, pulled from the source org.

Here is the error for the failed records:

"The specified Federation ID already exists for this organization: SAML Federation ID"

I verified all the user records to make sure that this users doesn't exist in the Org to which I'm inserting.

Best Answer

As you already verified that their is no duplicate user inserted in that case or use detail page you find field Federation Id. This is a unique field for user object. So two records cannot be same FederationId. So there is a use case that your old users exist in the org has same federationId as newly inserted user.

Note: You sholud also check deactive users. there might you will find the user with same federationId. You need to remove that.

Related Topic