Attachment names appear as null when read ACL for the parent record has an ACL script that references "gr" glide record variableDescriptionIf you have a read ACL against a table that uses a "gr" variable for a glide record in the ACL script when you attach an attachment to that record type the attachment name will appear as "null" until the record is refreshed.Steps to Reproduce WorkaroundOnly use the gr GlideRecord variable inside a function, for example:if (typeof g_approval_form_request != "undefined" && g_approval_form_request == true)answer = true;elseanswer = getAnswer();function getAnswer() {var gr = new GlideRecord("sysapproval_approver");gr.addQuery("sysapproval", current.sys_id);gr.addQuery("approver", gs.getUserID());gr.setLimit(1);gr.query();return gr.hasNext();}Related Problem: PRB591831