
Or is that just wishful thinking?
Thanks,
David
9 réponses
David this is possible...especially if you don't need data from the object and just want to perform an update..so for example on an account if I know the Id and I know I want to update the Type field...regardless of what the current value is:
Account a = new Account(Id='xxxxxxxxxxxxxxx');
a.Type = 'Client';
update a;