Along the lines of this question.
I'm trying to mark an existing Invoice as Paid in Dynamics CRM 2011 using Silverlight.
According to the documentation, all I need to do is set the Status Code = 100001 and the State Code = 2.
When I do this I get a "NotFound" exception.
Guid invoiceID = new Guid("Existing Invoice Guid");
IOrganizationService orgService = OrgServiceFactory.GetInstance();
orgService.BeginRetrieve("invoice", invoiceID, new ColumnSet(new string[] { "invoiceid", "statecode", "statuscode" }), (result) =>
{
var fetchResp = orgService.EndRetrieve(result);
var statecodeAttrib = fetchResp.Attributes.Single(a => a.Key == "statecode");
OptionSetValue statecode = (OptionSetValue)statecodeAttrib.Value;
statecode.Value = 2;
var statuscodeAttrib = fetchResp.Attributes.Single(a => a.Key == "statuscode");
OptionSetValue statuscode = (OptionSetValue)statuscodeAttrib.Value;
statuscode.Value = 100001;
orgService.BeginUpdate(fetchResp, (updateResult) =>
{
/* Web Exception thrown here */
orgService.EndUpdate(updateResult);
Console.Write("");
}, orgService);
}, orgService);
If I remove the "statecode" bit, and just try and set the statuscode to 2 - (Partially Shipped) or 4 - (Billed) it works as expected.
It is only when I try and set both it fails. It also fails if I just try and set statuscode = 100001, 100002, 100003 (Complete, Partial, Canceled)
Is there another way to mark an invoice as paid?