Cancel UI action condition on proc_po_line causes warnings due to code issueDescriptionCancel UI action condition on proc_po_line causes warnings due to code issue Steps to Reproduce Install Procurement (HAM may also need to be installed)Open a Purchase order line items [proc_po_item] form Actual Behaviour:The condition of the "Cancel" ui action /sys_ui_action.do?sys_id=4bd48d88c3b13000c111113e5bba8f34current.canRead() && current.canCreate() && (new global.ProcurementUtils().showCancelOnPurchaseOrderLine(current));causes the following warning:Evaluator: com.glide.script.RhinoEcmaError: "record" is not defined.sys_script_include.378ec0bb37c13000158bbfc8bcbe5d17.script : Line(1262) column(0)showCancelOnPurchaseOrderLine calls isAssetOperationInProgressForPO, which calls isAssetOperationInProgress, which has the code issue.It is from script include ProcurementUtils, and this function:isAssetOperationInProgressForPO: function(po) { var purchaseOrder = new GlideRecord('proc_po');purchaseOrder.get(po.sys_id);return !!record.getValue('asset_operation'); <<<<<<<< There is no "record" variable defined in this function, only "po" and "purchaseOrder"},WorkaroundThis problem has been fixed in the Zurich release.Related Problem: PRB1834260