Hi I have been working on updating expired contracts in Microsoft Dynamics Crm 4.0. So that they change state to Draft and has an expired date in the future set. I have been doing this through the CrmWebservice.
My first try was to simply update through the Update method. But got this "The state is invalid, this contract cannot be updated".
So after that I have tried to update the status of the contract this way
SetStateContractRequest request = new SetStateContractRequest();
request.ContractState = ContractState.Draft;
request.ContractStatus = 1;
request.EntityId = contract.contractid.Value;
service.Execute(request);
Resulting in: "The target state is invalid. The target state may not exist or the system does not allow changing to the target state from the current state."
I've tried other combinations with the same result.
So I'm fearing that it's not possible to change the status of a Contract once it has expired. Is that the case? And if not, then how do I solve the problem?