Friday, July 6, 2012

INVALID_FIELD_FOR_INSERT_UPDATE, Cannot specify any additional fields when marrying or separating a Person-Account: []

When trying to programmatically convert a business account into a person account using Force.com Apex, I'm getting INVALID_FIELD_FOR_INSERT_UPDATE, Cannot specify any additional fields when marrying or separating a Person-Account: []


found this thread at the developer force. The solution goes:

The (nonobvious) solution here is that, when you change the RecordType of the Account, you need to be operating on an Account object that has nothing but its Id defined.

In other words, this does NOT work:


Account a = new Account(Name = 'Test PAConv');
insert a;

Contact c = new Contact(LastName = 'PAConv', AccountId = a.Id);
insert c;

a.RecordTypeId = PA.getRecordTypes()[0].Id;
update a;

It fails with "INVALID_FIELD_FOR_INSERT_UPDATE, Cannot specify any additional fields when marrying or separating a Person-Account []"


However, re-fetching the "a" record with only its Id lets the whole thing work:


Account a = new Account(Name = 'Test PAConv');
insert a;

Contact c = new Contact(LastName = 'PAConv', AccountId = a.Id);
insert c;

// re-fetch a before updating RecordType
a = [select Id from Account where Id = :a.Id];

a.RecordTypeId = PA.getRecordTypes()[0].Id;
update a;

By: https://www.ihance.com/aav2/appexchange.aspx



4 comments:

  1. It's going to be finish of mine day, except before ending I am reading this impressive piece of writing to improve my
    know-how.

    Visit my webpage; mortal kombat komplete edition pc download

    ReplyDelete
  2. If you want to find hotel rooms or any affordable accommodation, you can now see the exact location and the surrounding area in 360-degree view
    via Google Street View. It will also allow people to
    access the internet from anywhere, which will increase our
    immersion in the internet through wireless devices
    such as cell phones of PDAs. You can now access travel websites
    and search portals that offer the best hotel rates in your laptop, tablet
    computer, or mobile phone.

    Feel free to visit my webpage Code free Wifi

    ReplyDelete
  3. Aw, this was a very nice post. Finding the time and actual effort to
    produce a very good article… but what can I say… I put things off a whole lot and don't manage to get anything done.


    Feel free to surf to my weblog: profit in 60 seconds software

    ReplyDelete
  4. Hi there everyone, it's my first visit at this web site, and piece
    of writing is in fact fruitful in favor of me, keep up posting such articles.


    my blog no credit car loans orlando FL

    ReplyDelete

Did this help you?
How can we help you further?