通过 url 更改 Salesforce 报表过滤器 - 也更改过滤器逻辑吗?
在 Salesforce 中,有一种通过向报告 URL 添加参数来可编程过滤报告的方法。 pc#、pn# 和 pv# 允许修改过滤器 0 到 9(报告最多有 10 个过滤器),甚至从无到有创建过滤器(没有过滤器的报告可以像这样动态添加过滤器)。
除了 10 个通用过滤器之外,还可以向报告添加单个“过滤器逻辑”过滤器/规则。典型的过滤器逻辑规则可能是“1 AND (2 OR 3)”,这意味着过滤器 1 必须为 true,并且过滤器 2 或 3 必须为 true。
有什么方法可以通过像参数一样的 url 操作来改变它吗?或者我是否在 99% 的时间里都坚持对过滤器进行硬编码?
In Salesforce there is a way to programmably filter reports by adding parameters to the report url. pc#, pn# and pv# allow filters 0 to 9 (reports have a max of 10 filters) to be modified or even created out of nothing (a report with no filters have can have filters dynamically added like this).
In addition to the 10 generic filters it is also possibe to add a single "Filter Logic" filter/rule to the report. A typical filter logic rule might be "1 AND (2 OR 3)", which means filter 1 must be true, and either filter 2 or 3 must be true.
Is there any way to change this through url manipulation like with parameters? Or am I stuck with hard coding the filters 99% of the time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
url参数是
布尔过滤器
你需要对你想要的值进行urlencode,所以它看起来更像
bool_filter=1%20或%202
The url parameter is
bool_filter
you'll need to urlencode the value you want, so it's going to look more like
bool_filter=1%20or%202