crm 业务流程中选项集的清除选项

clearoption for optionset in crm business process flow

我有一个业务流程 在其中一个步骤中,我添加了一个选项集(子类别)

我正在尝试使用以下代码清除选项集中的选项

Xrm.Page.getControl("new_subcategory").removeOption(100000005)
Xrm.Page.getControl("new_subcategory").clearOptions()

这会删除表单内选项集的选项,但不会删除业务流程步骤中的同一选项集

您需要在 id 中添加 header_process_。所以:

Xrm.Page.getControl("header_process_new_subcategory").removeOption(100000005)
Xrm.Page.getControl("header_process_new_subcategory").clearOptions()

SDK reference