Resolved! Change field in a requested item
Hi, I'm trying to change a field in the requested item table from the workflow. Here is my script: var p = new GlideRecord('sc_req_item');p.addQuery('sys_id', current.sys_id);p.query();while(p.next()){p.requested_for = current.variables.name;p.update...