Hi all,
As mentioned in CRM 2016 SDK, "SetParentTeamRequest" message is deprecated and "UpdateRequest" is recommended instead of that (you can find details here)
I did some practices with new way but there is no changes when I update the team using the codes below.
When I use "SetParentTeamRequest" for the same operation, the operation is completed smoothly and the tool is updated.
There is no problem with the other deprecated methods, but having problems with "SetParentTeamRequest".
Have you tried before and encountered a similar problem?
Entity entity = new Entity("team");
entity["teamid"] = teamId;
entity["businessunitid"] = new EntityReference("businessunit", businessUnitId);
this.OrganizationService.Update(entity);
*This post is locked for comments
I have the same question (0)