Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Hi @D.Wheeler3GADA 


I don't know if that's exactly what you want to achieve, but the following code can be in an external rule and running it from an assembly copies the "Project" property to the assembly it opens.

 

oProject=iProperties.Value("Project", "Project")


Dim Docu As AssemblyDocument = ThisApplication.Documents.Open("Paste Full document name as string", True)

Dim invDesignInfo As PropertySet
invDesignInfo = Docu.PropertySets.Item("Design Tracking Properties")   
        
invDesignInfo.Item("Project").Value = oProject

I hope you find it useful.