Target field set as empty in sys_email after Washington upgradeIssue Steps to Reproduce: Send an inbound email to ServiceNow. The fetched email has the target table/record as empty even after the Inbound Action has been executed. The Inbound Action used to work before the Washington upgrade. The script doesn't have "current.update" or "current.insert" utilised.ReleaseThe issue was reported for: Washington DC Patch 3 Hot Fix 2ResolutionAs a workaround an event is required to be created: Create a new event (ie. "email.update_target") in the Event Registry (System Policy > Events > Registry).ii. Create a new Script Action (System Policy > Events > Script Actions):Event name: email.update_target (Event name from step 1)Script:-----------------------------------------------------------------------------------// current: GlideRecord - event scheduled on behalf of (incident for example)// event: GlideRecord - sysevent that caused this to be invokedvar emailGrec = new GlideRecord('sys_email');if (emailGrec.get(current.sys_id)) {if (!gs.nil(event.parm1) && !gs.nil(event.parm2)) {emailGrec.target_table = event.parm1;emailGrec.instance = event.parm2;emailGrec.update();}}------------------------------------------------------------------------------------iii. Update your Inbound Email Action/Script Include to create an event instead of updating the "target_table" and "instance" field on [sys_email].----------------------------------------------------------------------gs.eventQueue('email.update_target', emailGr, targetTable, targetId);