Skip to content

Instantly share code, notes, and snippets.

@cdcarter
Created May 10, 2015 06:53
Show Gist options
  • Save cdcarter/9390c2c6f96b4448b8d7 to your computer and use it in GitHub Desktop.
Save cdcarter/9390c2c6f96b4448b8d7 to your computer and use it in GitHub Desktop.
System.ListException: Duplicate id in list: 001j000000HUMDNAA5
Account acc = [Select Id from Account Where Id='001j000000HUMDN'];
Account acc2 = [Select Id from Account Where Id='001j000000HUMDN'];
acc.Type = 'Prospect';
acc2.Type = 'Other';
List<SObject> thelist = new List<Sobject>();
thelist.add(acc);
thelist.add(acc2);
update thelist;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment