Change request roll back to "New" state
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 03:07 AM
Hi All, need help to do this configuration
"change_manager" role user must have ability to bring change request back to "New" state. The ability should be allowed only till change request is at Scheduled state. Beyond scheduled must not allow.
Thanks in advance.
- Labels:
-
Instance Configuration

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 03:16 AM
use "Write" operation type ACL here and add condition in ACL based on your need.
Change Request | state
Role: change_manager
Filter Condition
State | IS one of | select the state value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 06:40 AM
Hi ,
Create a new UI action on change table and provide access to UI action for that particular role only.Write code
Ui action like this:
((current.state == 'your state values')) && gs.hasRole('your role') && new ChangeRequestStateHandler(current).canMoveTo("new state value")
Thanks,
Sumanth

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 06:44 AM
There is a UI action that comes out of the box named Revert to New. Just add to the conditions to match your requirements.