Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2023 08:39 AM
Please find the Script below.
Script :
var gr = new GlideRecord("incident");
gr.get('ea4fb154479531108f96ba48436d437b' );
gr.query();
if(gr.next()){
gr.comments = "Please reopen this incident.";
gr.update();
}
Please, Mark my answer as correct if it solves your issue or mark it as helpful if it is relevant for you!