- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2016 03:26 PM
Hello all,
Anyone know the solution(suggestion) for me about :
Remove(disable) item "closed" of choice list "state" from the list table by specific role user.
I find some article relative the choice list, but it use for the form table.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2016 04:49 PM
Hi,
There is no option to remove choice value from the list view. However as alternative you can restrict the update on list edit operation(ACL) and restrict the access.
http://wiki.servicenow.com/index.php?title=Using_Access_Control_Rules

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2016 04:49 PM
Hi,
There is no option to remove choice value from the list view. However as alternative you can restrict the update on list edit operation(ACL) and restrict the access.
http://wiki.servicenow.com/index.php?title=Using_Access_Control_Rules

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2016 04:52 PM
Tran,
I do not think there is a way to hide a choice value on the list. You can prevent users from editing the state field from the list via a list_edit ACL and force them to change the state from the form and hide the choice value on the form by using an onLoad client script
Thanks,
Abhinay
Please mark Helpful, Like, or Correct depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2016 06:45 PM
thanks Pradeep Sharma and Abhinay,
I apply business rule, because the field choice list "state" is contained in the sys_choice table.
Write script when meet condition,then "oneRecordVariable.inactive = true".
The disadvantage it always load-query back to server(the first load page & once i click to edit state).
But it work .

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2016 07:56 PM
Hi The,
Thanks for the update.
Please mark one of response as correct and close the thread.