如何过滤 Apex 网格中的数据以显示特定用户组的特定内容?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 APEX 内置组,因此有一个函数 APEX_UTIL.GET_GROUPS_USER_BELONGS_TO 可以在这里为您提供帮助。它返回用户所属组的逗号分隔列表。所以你可以像这样使用它:
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: