- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 12:25 AM
Hi Team,
I have created a custom role called ServiceDesk so my question is which type of ACL I need to create so that the user having the ServiceDesk role can see and edit Incident.
Thanks,
Ankit
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 12:40 AM
Best is to not create custom ACL's for this, but to add roles sn_incident_read and sn_incident_write roles in your custom role.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 12:40 AM
Best is to not create custom ACL's for this, but to add roles sn_incident_read and sn_incident_write roles in your custom role.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 12:42 AM
Refer the Out of the Box ACL with sys_ids (Edit (write): 66ec26370a0a0b0100a67b597d415b84, Read: 546553d487300300b309452c97cb0b3f) and you can create ACLs similar to these with your ServiceDesk role.
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 01:13 AM
Hi @Ankit Kumar6 ,
Hope you are doing great.
Follow the below steps to grant permission to ServiceDesk :
- Refer to OOB read and write ACL created on incident Table.
- Create a copy of read and write ACL on incident table.
- add your new custom role to which you want to grant read and edit access on incident.
Define the conditions for the ACL to be applicable. Since you want users with the "ServiceDesk" role to access and edit Incidents, you can set the condition as:
- Field: "AssignedTo" (or any other field relevant to your requirements)
- Operator: "is"
- Value: "javascript:gs.getUser().getRoles().contains('ServiceDesk')"
- Also, check if you want to add existing role defined OOB to grantr access , if not you can modify ACL as per your requirement by removing existing permissions granting access.
Regards,
Riya Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2023 02:50 AM
Hi Riya,
I copied the read ACL on the incident table.
Then in the role section, I removed oob role and added my custom role.
But still not able to see incidents.
can you please help me on this.