- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Force iproperties to be filled in
We want certain custom iproperties te be filled in when saving or checking in to Vault. Anyone knows how to accomplish?
BR, Johan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Vault Data standard can help you force filling the required iproperties field before you can check in to vault.
Data Standard Administration | Vault Products 2022 | Autodesk Knowledge Network
Before you can check in you need to save your file, so it could also be an option to use ilogic or API to create some rules triggered by the "before save" event for example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Sounds like something that could be done with iLogic? I can move this post there if you want.

Chris Benner
Industry Community Manager – Design & Manufacturing
If a response answers your question, please use ACCEPT SOLUTION to assist other users later.
Also be generous with Likes! Thank you and enjoy!
Become an Autodesk Fusion Insider
Inventor/Beta Feedback Project
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
You could create an external rule that defines what you need. Here is just an example. I created a simple rule called "push custom". Then in the manage tab > Ilogic Panel > event triggers, Set the rule to run "before save". When you click the save button, it runs, then saves. Does that help?
iProperties.Value("Custom", "property 1") = "whatever i need it to be" iProperties.Value("Custom", "property 2") = iProperties.Value("Project", "Part Number") InventorVb.DocumentUpdate() iLogicVb.UpdateWhenDone = True