After deactivating the acl , it still works
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-02-2022 06:32 AM
There are already an acl which gives restriction to state field in approval table and i created an acl to give access to state field for some more users and when i deactivated the acl which is still giving access to everyone.
Please help me on this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-02-2022 08:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-02-2022 10:24 PM
Hi
Yes you can use client script also.
1. Make sure you get value in g_scratchpad variable through a display Business rule.
2. Checking the value in your onLoad client script.
3. If you want to set the field editable then use below:
g_form.setReadOnly('state',false);
if you want it to be editable then use:
g_form.setReadOnly('state',true);
Please mark this as correct and helpful if it resolved the query or lead you in right direction.
Thanks,
Mohit Kaushik
Community Rising Star 2022
Mohit Kaushik
ServiceNow MVP (2023-2025)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-03-2022 03:00 AM
This doesn't work why?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-03-2022 03:15 AM