iLogic - Refresh File from Vault

iLogic - Refresh File from Vault

andrew_wade1
Participant Participant
139 Views
5 Replies
Message 1 of 6

iLogic - Refresh File from Vault

andrew_wade1
Participant
Participant

I am looking to make an iLogic rule similar to if your in the Vault tab and right click your file and get the options to refresh file. I want that translated to a button using ilogic. Thanks

0 Likes
140 Views
5 Replies
Replies (5)
Message 2 of 6

vpeuvion
Advocate
Advocate

Hi,

Try this : 

ThisApplication.CommandManager.ControlDefinitions.Item("VaultRefresh").Execute

Hope this help.

Vincent.

0 Likes
Message 3 of 6

g.georgiades
Advocate
Advocate

VaultRefresh will only refresh the status, it does not download the file. The actual command is

ThisApplication.CommandManager.ControlDefinitions.Item("RefreshRevision").Execute

 

You can figure out the internal command names using the Event Watcher Dev Tool included with the Inventor developer tools and manually performing the action you want.

Some third-party commands may not show up here - the best identifier is if there is a ribbon buttom for the third-party command.

 

ggeorgiades_0-1753269990016.png

 

0 Likes
Message 4 of 6

andrew_wade1
Participant
Participant

That did not work, below is an image of the refresh file function i am looking for. My part file was changed from Released to WIP and will not check out unless i perform this function. 

Screenshot 2025-07-23 at 9.05.30 AM.png

Message 5 of 6

vpeuvion
Advocate
Advocate

Hi, ok can you try this : 

ThisApplication.CommandManager.ControlDefinitions.Item("RefreshRevisionTop").Execute

 Vincent.

0 Likes
Message 6 of 6

andrew_wade1
Participant
Participant

still did nothing. 

0 Likes