
tiagomacul
Mega Sage
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 01-11-2019 07:51 AM
Scripts: Schedule a script execution using script (schedule jobs)
Agendar um script para execução
.
var vId = current.sys_id;
var vNum = current.u_task.number;
var strScript = '';
strScript += 'var ObjT= new GlideRecord("task"); \n';
strScript += 'ObjT.addQuery("sys_id","' + vId + '"); \n';
strScript += 'ObjT.query(); \n';
strScript += 'ObjT.next(); \n';
strScript += 'ObjT.short_description = "ready"; \n';
strScript += 'ObjT.update(); \n';
strScript += '//Teste de script /n';
var ObjTrigger = new GlideRecord("sys_trigger");
ObjTrigger.initialize();
ObjTrigger.name = 'Script update ' + vNum;
ObjTrigger.trigger_type= '0';
ObjTrigger.repeat = '00:10:00';
ObjTrigger.script = strScript;
ObjTrigger.next_action = current.sys_updated_on;
ObjTrigger.insert();
Scheduled Script Executions and Events Objectives
Was useful, please leave your feedback!
Labels:
- 480 Views
Comments
User674366
Tera Explorer
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
05-27-2019
02:46 PM
Thanks for sharing this.