private void CheckForMissingNoteRecord(PXBlobStorageContext saveContext) { EntityHelper entityHelper = new EntityHelper(this); Note note = entityHelper.SelectNote(saveContext.NoteID); if (note == null) { PXNoteAttribute.InsertNoteRecord(saveContext.Graph.Views[saveContext.ViewName].Cache, saveContext.NoteID.Value); this.Caches[typeof(Note)].ClearQueryCache(); } }