Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everybody, there is a way how to do Assign/Update item in Inventor from Show Details pane? I'm in Inventor 2022
Solved! Go to Solution.
Hi everybody, there is a way how to do Assign/Update item in Inventor from Show Details pane? I'm in Inventor 2022
Solved! Go to Solution.
You'll need to use the Vault API for that. The best way would probably be to make a .dll with all the Vault methods you need to use in Vault(see this AU course) but you can do it directly from iLogic if you need to, just add your references to the he...
AddReference "Autodesk.Connectivity.WebServices"
AddReference "Autodesk.DataManagement.Client.Framework.Vault"
AddReference "Connectivity.InventorAddin.EdmAddin"
Imports VDF = Autodesk.DataManagement.Client.Framework
Imports Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections
Imports edm = Connectivity.InventorAddin.EdmAddin
AddReference "Connectivity.Application.VaultBase.dll" 'required
Imports VB = Connectivity.Application.VaultBase 'required
AddReference "Autodesk.Connectivity.WebServices.dll"
Imports ACW = Autodesk.Connectivity.WebServices
You'll want to:
See this article for more specifics on updating items with the Vault API
Its probably easiest to just use the built in Vault tools in Inventor though.
Hope this helps