- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 10:09 AM
how can i show only active users on sys_user.list table using a business rule!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 11:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 10:13 AM
Hey Carlos,
I believe this should be achieved via ACLs. For reference fields to show only active users, there's already an OOB business rule in place. For the list view of user table, you could write an acl with the script: current.active == true. Add roles if you wish to, and this should do the trick.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 10:14 AM
i am new on this whats a ACL_
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 10:21 AM
ACL's are access control lists - they determine who has access (read/write/create/delete) to which tables based on roles/conditions/custom script. Refer to the link below for more information.
http://wiki.servicenow.com/index.php?title=Using_Access_Control_Rules#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-11-2016 10:21 AM
ACL's are access control Lists that can restrict access to specific modules and when you apply them you can make a field visible only to a specific user with a specified role or to group with a specified role. you can make read, write, display and other functions using ACLS
Using Access Control Rules - ServiceNow Wiki
this will give you complete idea of ACL
Thank you