Hi All,
I am adding a new field which needs to be updated, from a user web portal that references the order. This update by design, can occur days after the order would be set to "Fulfilled".
Keeping my company's privacy, it'd be the same thing as maybe a user feedback field for the order that says. So in this example, I could use that I add a field called new_OrderFeedbackRating.
I have the website sending it to CRM like this:
SalesOrder s = new SalesOrder();
s.SalesOrderId = orderReq.salesOrderId;
s.new_OrderFeedbackRating = 5;
Service.Update(s);
Definitely works for orders in "New" status but for one that is Fulfilled I am getting an error that the Entity is read-only, and I believe it's because it's already fulfilled. I can't change the status and change it back, because we have a ton of workflows that kick off things like emails, etc that I definitely don't want to trigger. Is updating the database the only answer here?
Thank you for any help!
Dan Chase