I have a program which updates entity metadata description fields. Samplecode is
EntityMetadata entityMeta = new EntityMetadata() {
LogicalName = "account",
Description = new Microsoft.Xrm.Sdk.Label("Test update account description", LanguageCode)
};UpdateEntityRequest UpdateRequest = new UpdateEntityRequest()
{
Entity= entityMeta
};UpdateEntityResponse updateResp= (UpdateEntityResponse)Service.Execute(UpdateRequest);
The target system is CRM online which has three languages installed (US English, French and German). In the above LanguageCode is 1033 which is US English.I t runs fine but viewed in the customisation, the account entity has the original description.. Publishing makes no difference. Exporting the entity metadata or using XRMToolbox metadata browser shows the correct description against the account. It is just in Customisation in the GUI that it shows the original.
Any ideas?