How do I programatically update the subject in an activepointerbase?
I'm getting a message that Create/Update method not allowed in Activity Pointer CRM 2011
I am getting an activitypointer record, and attempting to update it:
var activityPointer = xrmServiceContext.ActivityPointerSet.FirstOrDefault(x => x.Id == myGuid);
I then attempt to update it:
activityPointer.EntityState = EntityState.Changed;
organizationService.Update(activityPointer);
And I get an exception: Update method not allowed in Activity Pointer
There is a field called Subject in the ActivityPointerBase table.
Question: How do I programatically update the subject in an activepointerbase?