I need to amend the the Incident's description field.
I have done some coding to amend the description. However, this only works if only status is still Open. If the incident is "Resolved", I will not be able to. Any way I can workaround this as I need to patch the data in CRM online. Thanks for helping.
Code snippet:
_description = _case.Contains("description") ? _case["description"].ToString() : "";
_case["description"] = "test test amendment";
_service.Update(_case);
*This post is locked for comments