Не удается заставить UpdateAttributeRequest работать - PullRequest
0 голосов
/ 18 июня 2010

Я пытаюсь использовать веб-службу метаданных Dynamics CRM для обновления порядка некоторых параметров списка выбора с помощью сообщения UpdateAttributeRequest . Хотя я могу изменить DisplayName атрибута с помощью параметра MergeLabels = false , сами значения параметра списка выбора кажутся неизменными.

1 Ответ

2 голосов
/ 18 июня 2010

Вы пробовали Запрос опции заказа ?

// 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);
...