Hi @C_Haines_ENG. Here is a fairly simple example iLogic rule that, when you run it from a drawing, will ask you to select a drawing view, then it will prompt you to enter/edit the value of the view's model document description, while showing you its current value as a suggestion. You can give this a try if you want. If this is not exactly what you had in mind, it might at least get you started in the right direction towards creating something better or more specific.
If ThisDoc.Document.DocumentType <> DocumentTypeEnum.kDrawingDocumentObject Then
MsgBox("A Drawing document must be active for this code to work. Exiting.", vbCritical, "")
Exit Sub
End If
Dim oDDoc As DrawingDocument = ThisDoc.Document
oObj = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingViewFilter, "Select a Drawing View.")
If IsNothing(oObj) OrElse (TypeOf oObj Is DrawingView = False) Then Exit Sub
Dim oView As DrawingView = oObj
Dim oModel As Document = oView.ReferencedDocumentDescriptor.ReferencedDocument
Dim oProjProps As PropertySet = oModel.PropertySets.Item("Design Tracking Properties")
Dim oDescProp As Inventor.Property = oProjProps.Item("Description")
Dim oInputDesc As String = InputBox("Enter/Edit Description", "Model Description", oDescProp.Value)
oDescProp.Value = oInputDesc
If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click (LIKE or KUDOS) 👍.
If you want and have time, I would appreciate your Vote(s) for My IDEAS :bulb: or you can Explore My CONTRIBUTIONS
Edit: Looks like we both posted a response at the same time, with about the same idea in mind. 😁
Wesley Crihfield

(Not an Autodesk Employee)