If i right understand you:
MSDN:
"When data in a document changes, the view responsible for the changes typically calls the
CDocument::UpdateAllViews function for the document, which notifies all the other views by calling the
OnUpdate method for each. The default implementation of
OnUpdate invalidates the entire client area of the view. You can override it to invalidate only those regions of the client area that map to the modified portions of the document."
So in your document add data to some class and call UpdateAllViews(), then in view
OnUpdate call GetDocument() and check data in document.