ACL issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 07:21 AM - edited 07-08-2025 07:30 AM
ACL issue.
I have create Read ACL on HR case table u_hr_case.
i have created Group HR_CN and added 2 user in the group. when they open the HR case record All filed shoud be read mode like Read acces only.
I have used below 3 codes
Kindly help me on this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 08:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 08:41 AM
I have activated

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 07:55 AM
Check if any existing ACL is impacting, use Access analyser to debugg, in meantime you can simply write below code and replace group name, this will make sure if user part of group then ACL is passed otherwise fail
answer = gs.getUser().isMemberOf('My HR Group');
Regards,
Musab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 08:14 AM
Hi @Vurukonda Sai 1 ,
create a denyunless write acl
replace incident with your table name
you can use security attribute Group Is not Your Group or script
answer = !gs.getUser().isMemberOf("HR_Marelli_CN") //update group name if required
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 09:22 AM
Hello @Vurukonda Sai 1 ,
Is there any existing ACL on these tables? May be existing ACLs are affecting
Thank you
Thank you.