根据 Cognos BI 中的角色过滤报告

Filter report based on the role in Cognos BI

我在 Cognos BI 中有一个报告,其中包含一个存储用户名的字段。 客户希望根据运行此报告的用户过滤数据报告。 我使用过滤器 [report].[user_name]=#sq($account.defaultName)# 它有效。 但现在客户想要在报告中显示 Cognos BI 中某一特定角色的所有数据。 有什么办法吗?

这只是一个布尔表达式。调整它做你想做的事:

(
[user_name]=#sq($account.defaultName)#
OR
[user_name]='The user name that can see everything'
)

不要忘记括号。