Dynamics CRM 365 - 如何打开根据相关记录过滤的视图
Dynamics CRM 365 - How to open view filtered based on related record
我创建了一个名为 followups 的新实体,在以下情况下,我需要向帐户详细信息表单添加一个按钮,然后我需要从该按钮打开一个已过滤的视图,该视图将显示所有 followups 的列表关于那个帐户,但我找不到任何方法来进行这种过滤,有没有办法实现?
我认为您正在寻找 lookupObjects 方法,您可以从功能区按钮调用此查找功能。
示例:
var lookupOptions = {
defaultEntityType: "account",
entityTypes: ["account"],
allowMultiSelect: false,
customFilters: ["%3Cfilter%20type%3D%22and%22%3E%3Ccondition%20attribute%3D%22name%22%20operator%3D%22eq%22%20value%3D%22test%22%20%2F%3E%3C%2Ffilter%3E"],
customFilterTypes: [""]
};
Xrm.Utility.lookupObjects(lookupOptions)
.then(function(result){
})
.fail(function(error){
});
我创建了一个名为 followups 的新实体,在以下情况下,我需要向帐户详细信息表单添加一个按钮,然后我需要从该按钮打开一个已过滤的视图,该视图将显示所有 followups 的列表关于那个帐户,但我找不到任何方法来进行这种过滤,有没有办法实现?
我认为您正在寻找 lookupObjects 方法,您可以从功能区按钮调用此查找功能。
示例:
var lookupOptions = {
defaultEntityType: "account",
entityTypes: ["account"],
allowMultiSelect: false,
customFilters: ["%3Cfilter%20type%3D%22and%22%3E%3Ccondition%20attribute%3D%22name%22%20operator%3D%22eq%22%20value%3D%22test%22%20%2F%3E%3C%2Ffilter%3E"],
customFilterTypes: [""]
};
Xrm.Utility.lookupObjects(lookupOptions)
.then(function(result){
})
.fail(function(error){
});