通过 url 更改 Salesforce 报表过滤器 - 也更改过滤器逻辑吗?

发布于 2024-12-12 19:18:53 字数 312 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

清风无影 2024-12-19 19:18:53

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

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