Force iproperties to be filled in

Force iproperties to be filled in

johan.degreef
Advisor Advisor
392 Views
3 Replies
Message 1 of 4

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
393 Views
3 Replies
Replies (3)
Message 2 of 4

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
Message 3 of 4

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.

Did you find a post helpful? Then feel free to give likes to these posts!
Did your question get successfully answered? Then just click on the 'Accept solution' button.  Thanks and Enjoy!


Chris Benner
Community Manager

0 Likes
Message 4 of 4

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