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

Force iproperties to be filled in

johan.degreef
Advisor

Force iproperties to be filled in

johan.degreef
Advisor
Advisor

We want certain custom iproperties te be filled in when saving or checking in to Vault. Anyone knows how to accomplish?

 

BR, Johan

Inventor 2025, Vault Professional 2025, Autocad Plant 3D 2025
0 Likes
Reply
353 Views
3 Replies
Replies (3)

theo.bot
Collaborator
Collaborator

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.

0 Likes

CGBenner
Community Manager
Community Manager

@johan.degreef 

 

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
0 Likes

blandb
Mentor
Mentor

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

 

 

Autodesk Certified Professional
0 Likes