Ilogic "description rule" appears to be interfering with Vault check in
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
We use an iLogic rule to display part number and description in the model tree.
The event trigger is set for all documents to before save document.
The rule work as it should, but we are having some problems with the Vault Add-in.
Assemlies take for ever to check in.
New drawing can't be checked in, because the check in dialog box doesn't appear.
Work around is to turn of the event trigger, we want it to be automated.
Preferably the rule is to be triggered to iProperty Change, but this option isn't available for all documents.
Description rule:
'create reference to part
openDoc = ThisApplication.ActiveDocument
'format display name
openDoc.DisplayName = iProperties.Value("Project", "Part Number") & " (" & iProperties.Value("Project", "Description") & ")"
'openDoc.Rebuild
'update
iLogicVb.UpdateWhenDone = True
Can anyone tell me how we can change the setup so we can work with the rule?