Hi,
We are developing an external portal as we did not succeed with the custom portal provided with CRM. We would like to show the contact creating the record on the portal as the owner of the record. I read that is not supported as that is not a paying user. The portal was able to create records with SYSTEM. How can we do the same to indicate the records have been created externally?
J.
//try to change owner;
var request = new AssignRequest
{
Assignee = new EntityReference(SystemUser.EntityLogicalName, Guid.Parse("?")),
Target = new EntityReference(MyClaim.EntityLogicalName, NewClaim.Id)
};
// Execute the Request
_serviceContext.Execute(request);
*This post is locked for comments
I have the same question (0)