- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2022 04:23 AM
Can anyone help me how to get an ESS role in ServiceNow?
I want to create ACL for some tables like sys_user,cmdb_ci I created Read ACL with a public role but my manager suggested that use the ESS role.
I checked for ESS in this table sys_user_role but did not found it.
Solved! Go to Solution.
- Labels:
-
Multiple Versions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2022 06:58 AM
Click on Advanced checkbox below active field, then you would see script below.
Then you would need to set answer variable as true and false
if(gs.getSession().isInteractive() && gs.getSession().isLoggedIn())
answer = true;
else
answer = false;
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2022 05:20 AM
What you want to try is :
isInteractive() and isLoggedIn() functions which you can write up in your ACL script
Visit below link to understand better about those functions:
Feel free to mark correct, If I answered your query.
Will be helpful for future visitors looking for similar questions 🙂
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2022 06:51 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2022 06:58 AM
Click on Advanced checkbox below active field, then you would see script below.
Then you would need to set answer variable as true and false
if(gs.getSession().isInteractive() && gs.getSession().isLoggedIn())
answer = true;
else
answer = false;
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2022 01:08 PM
Hey, is your query resolved?
Feel free to mark correct, If I answered your query.
Will be helpful for future visitors looking for similar questions!
Aman Kumar