- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2022 08:13 AM
Hello,
A user missed the due date assessment and wants to take it again, from a demand.
How I can resend him this assessment ?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2022 08:30 AM
You can try this in a background script
var sur = new GlideRecord("asmt_assessment_instance");
sur.get('sys_id_of_assessment_record');
sur.state="wip";
sur.setWorkflow(false);
sur.update()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2022 08:30 AM
You can try this in a background script
var sur = new GlideRecord("asmt_assessment_instance");
sur.get('sys_id_of_assessment_record');
sur.state="wip";
sur.setWorkflow(false);
sur.update()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2022 02:34 AM
I was searching a solution within ServiceNow first , but updating the due date is working.
Thank you