After ugrade from CRM 2015 upd0.1 to CRM 2016 SP1 onpremise, server side synchronization of task not worked correctly.
When we create task (state Code Open, Status code Not Started) is synchronized to Exchange 2013 with status Completed and in next synchronization record in CRM is updated with this state.
Here is fragment of xml which CRM Async service sends to Exchange EWS service. You can see that crmstatus code is 2, which is correct, and status for EWS is Completed, which is wrong.
<t:ExtendedProperty>
<t:ExtendedFieldURI DistinguishedPropertySetId="PublicStrings" PropertyName="crmLinkState" PropertyType="Double" />
<t:Value>2</t:Value>
</t:ExtendedProperty>
<t:ExtendedProperty>
<t:ExtendedFieldURI DistinguishedPropertySetId="PublicStrings" PropertyName="crmxml" PropertyType="String" />
<t:Value><task><statuscode>2</statuscode><......</t:Value>
</t:ExtendedProperty>
<t:DueDate>2016-07-31T08:00:00.000+02:00</t:DueDate>
<t:StartDate>2016-07-31T08:00:00.000+02:00</t:StartDate>
<t:Status>Completed</t:Status>
Can you someone help me find where can be problem?
*This post is locked for comments
I have the same question (0)