How to restrict Catalog item edit option for particular group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 03:38 AM
Hello Team,
I have One customer requirement.
A particular Group wants to see All maintained items and I want to restrict the edit option. So which is the best way to achieve this requirement?
I tried to assign a Catalog admin role to that group, now they are seeing the all maintain items. but I am unable to restrict that edit option, can anyone help to fix this issue?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 04:22 AM
Hi
if(gs.getUser().isMemberOf("YOUR GROUP NAME")){
answer = true;
}
else
answer = false;
This ACL will make sure only users in that group can read the catalog items and this ACL will not impact other ACLs.
Mark my answer as HELPFUL / CORRECT if this help resolve your issue.
Regards,
Vamsi S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 04:40 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 04:44 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 04:50 AM