我正在尝试使用Dynamics CRM的元数据Web服务使用 UpdateAttributeRequest 消息更新某些选项列表选项的订单。虽然我可以使用 MergeLabels = false 选项更改属性的DisplayName,但是picklist选项值本身似乎是不可变的。
答案 0 :(得分:2)
您是否尝试过Order Option Request?
// Create the request.
OrderOptionRequest orderOptionRequest = new OrderOptionRequest();
// Set the properties for the request
orderOptionRequest.AttributeLogicalName = "address1_addresstypecode";
orderOptionRequest.EntityLogicalName = EntityName.contact.ToString();
// Set the order for the options.
orderOptionRequest.Values = new int[] { 4, 3, 2, 1 };
// Execute the request
OrderOptionResponse orderOptionResponse = (OrderOptionResponse)metadataService.Execute(orderOptionRequest);