Invalid push notification, contact your AdministratorIssue When you try to view the notification on your mobile device it errors out "Invalid push notification, contact your Administrator" When checking the logs below error is found system Warning org.mozilla.javascript.EcmaError: Cannot convert null to an object.Caused by error in sys_push_notif_msg_content.8abd1e80db93455071d9b7e8f496190b.script at line 11: (function buildJSON(/*GlideRecord*/ current, /*String*/ message, /*Object*/ attributes) {2:3: var layoutFieldGenerator = new global.NotificationLayoutFieldGenerator();4: var identifier = layoutFieldGenerator.layoutField(current.sys_class_name, current.sys_id, "number");ReleaseNewYorkCauseThe fields being referenced in the script do not exist on the record Example:var identifier = layoutFieldGenerator.layoutField(current.sys_class_name, current.sys_id, "number");var description = layoutFieldGenerator.layoutField(current.sys_class_name, current.sys_id, "short_description");var status = layoutFieldGenerator.layoutField(current.sys_class_name, current.sys_id, "priority");ResolutionIt is essential to verify that the field names referenced in the script exist on the table. If a field that is referenced does not exist, an error will occur.