- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2018 06:52 PM
Hello,
I created a custom table for which i need to read access to all the itil users and write access to Network Support group users.
How to acheive this ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2018 08:06 PM
Hi Irfan,
Write the code in ACL script part:-
For Write Access:-
if(gs.getUser().isMemberOf('Network Support')){
answer=true;
}
else{
answer=false;
}
For Read Access:-
if(gs.getUser().hasRole('itil')){
answer = true;
}
else
{
answer = false;
}
TIA
PKG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2018 04:47 AM
Prince,
I tried but it is not working for Write access, unable to create a new record. i think this is because of itil role since it is conflicting with read role ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2018 10:37 PM
Hi Irfan,
Please use ACL rules for providing read / write access for users.
Thanks.