- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2025 10:29 AM
Hello all,
I was not paying attention and I closed a Change Request that I thought was mine but it was not. Now I am hoping for a way to re-open what I closed so its assignee can complete the notes. I have been poking around but none of the scripts I have found so far have been successful. I do have admin access. Is there a way to accomplish this? I want to put it back to "Scheduled" or "Implement".
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2025 12:12 PM
Hi @robinsamberg,
the following worked for ma as admin, is Scripts - Background:
var chg = new GlideRecord('change_request');
chg.addQuery('number', 'CHG0003513');
chg.query();
if (chg.next()) {
chg.setWorkflow(false);
chg.state = -2;
chg.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2025 12:12 PM
Hi @robinsamberg,
the following worked for ma as admin, is Scripts - Background:
var chg = new GlideRecord('change_request');
chg.addQuery('number', 'CHG0003513');
chg.query();
if (chg.next()) {
chg.setWorkflow(false);
chg.state = -2;
chg.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2025 01:18 PM
@Bert_c1 this worked perfectly! Thank you so much for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
This worked for me also.