
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2018 11:22 AM
I have a requirement that needs Problem state to be set as "Pending change" when a change request is created from a problem record.
Problem state should be set as "Pending change" when a change request is created using the UI action "Create Normal Change" or "Create Emergency Change".
Any help in doing this will be much appreciated!
Solved! Go to Solution.
- Labels:
-
Problem Management
- 6,904 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2018 12:36 PM
Hi,
In the UI Actions Create Normal Change and Create Emergency Change, add the below line in the script.
current.state = '3';
Mark my answer as correct or helpful if it helped.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2018 12:18 PM
You could update your UI actions to do this
or simply add a BR to the Problem.rfc field, when the field changes from empty (to something), set the problem (current) state field to Pending Change.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2018 12:28 PM
Hi,
In the UI Actions Create Normal Change and Create Emergency Change, you can add the below line in the script.
changeRequest.setValue("state", 'value of pending Change');
Mark my answer as correct or helpful if it helped.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2018 12:36 PM
Hi,
In the UI Actions Create Normal Change and Create Emergency Change, add the below line in the script.
current.state = '3';
Mark my answer as correct or helpful if it helped.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2022 03:59 PM
Hey, although the task validation was successful. My state for problem says assessed instead of pending change. Should i change the dictionary entry forms to achieve this goal instead?