Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2018 03:13 PM
How about this
in the onbefore script do a GlideRecord query and set the values there. Tranform log will show all the rows are ignored, but it should have still updated the values
var gr= new GlideRecord(target.getTableName());
gr.get(target.sys_id);
gr.u_lease_expiration = '';
gr.location = '';
//set rest of fields
gr.update();