无法让 UpdateAttributeRequest 工作

发布于 2024-09-05 23:56:54 字数 190 浏览 5 评论 0原文

我正在尝试使用 Dynamics CRM 的元数据 Web 服务通过 UpdateAttributeRequest 消息更新某些选项列表选项的顺序。尽管我可以使用 MergeLabels = false 选项更改属性的 DisplayName,但选项列表选项值本身似乎是不可变的。

I am trying to use the Metadata Web Service of Dynamics CRM to update the order of some picklist options using the UpdateAttributeRequest message. Though I get to change the attribute's DisplayName using the MergeLabels = false option, the picklist option values themselves seem immutable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的快感 2024-09-12 23:56:54

您是否尝试过订单选项请求

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

Have you tried the 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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文