如何过滤 Apex 网格中的数据以显示特定用户组的特定内容?

发布于 2024-12-13 02:50:02 字数 345 浏览 2 评论 0原文

我有一个 ADMIN 组和一个 USER 组。我的数据看起来像这样的原始数据:

ID ---------- NAME --------- SECTOR
0001          John           A
0002          John           H
0024          John           A
0011          John           H
0045          John           A

ADMIN 组应该只能看到 A,而 USER 组应该只能看到 H。 如何自定义 Apex 中的 gridview 以根据授权/组对其进行过滤?

I have an ADMIN group and a USER group. My data looks something like this raw:

ID ---------- NAME --------- SECTOR
0001          John           A
0002          John           H
0024          John           A
0011          John           H
0045          John           A

The ADMIN group should only be able to see A, and the USER group should only be able to see H.
How can I customize the gridview in Apex to filter it based on authorization/groups?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我一直都在从未离去 2024-12-20 02:50:02

由于您使用的是 APEX 内置组,因此有一个函数 APEX_UTIL.GET_GROUPS_USER_BELONGS_TO 可以在这里为您提供帮助。它返回用户所属组的逗号分隔列表。所以你可以像这样使用它:

select id, name, sector
from employees
where ((','||apex_util.get_groups_user_belongs_to(:app_user)||',' like '%,ADMIN,%'
      and sector = 'A')
or (','||apex_util.get_groups_user_belongs_to(:app_user)||',' like '%,USER,%'
      and sector = 'H'))

Since you are using APEX built-in groups, there is a function APEX_UTIL.GET_GROUPS_USER_BELONGS_TO that can help you here. It returns a comma-separated list of the groups the user belongs to. So you could use it something like this:

select id, name, sector
from employees
where ((','||apex_util.get_groups_user_belongs_to(:app_user)||',' like '%,ADMIN,%'
      and sector = 'A')
or (','||apex_util.get_groups_user_belongs_to(:app_user)||',' like '%,USER,%'
      and sector = 'H'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文