ServiceNow update()のサンプル
概要
スクリプト
.update()
更新を反映させる
使用例
優先度2のインシデントレコードにのみ、説明欄を更新する
サンプルコード
var incidentGR = new GlideRecord('incident’);
incidentGR.addQuery('priority’,’2′);
incidentGR.query();
while(incidentGR.next()){
incidentGR.short_description = “更新されました" + incidentGR.short_desciption;
incidentGR.update();
}