Missing local part from vault when using iLogic

Missing local part from vault when using iLogic

Jacob.1.nielsen
Participant Participant
316 Views
1 Reply
Message 1 of 2

Missing local part from vault when using iLogic

Jacob.1.nielsen
Participant
Participant

We are currently struggling with our ilogic configuable models. If they are checked in as custome level of detail, it seem to loose grab of the supressed files.

Fx if a colleague with clean workspace directory tries to get/ckeck out the configuable models, the suppressed files show up unresolved as they are not downloaded locally.

Can it be right we have to ensure all main assemblies and all... all subassemblies have to be checked in as master level of detail? Or are we missing something?

 

-Jacob

0 Likes
317 Views
1 Reply
Reply (1)
Message 2 of 2

D.Motshagen
Contributor
Contributor

Hi Jacob,

 

Maybe this can help you:

 

We have made just a setup like yours (in Vault), only we didn't replace parts.

We used the possibility to change the BOM in iLogic. So all files are in the model but not in the BOM

You Can set the BOM for severay Parts or Subassemblies to reference and then thode sub assemblies or parts won't show up in the BOM.

 

 

in BOM Hidden occurences.PNG

 

 

 

If ON_OFF = True Then
oCompOcc = Component.InventorComponent("PartBakje_test Finish:2")
oCompOcc.BOMStructure = BOMStructureEnum.kDefaultBOMStructure
Component.Visible("PartBakje_test Finish:2") = True

oCompOcc = Component.InventorComponent("PartBakje_test2 Finish:2")
oCompOcc.BOMStructure = BOMStructureEnum.kDefaultBOMStructure
Component.Visible("PartBakje_test2 Finish:2") = True
End If

If ON_OFF = False Then
oCompOcc = Component.InventorComponent("PartBakje_test Finish:2")
oCompOcc.BOMStructure = BOMStructureEnum.kReferenceBOMStructure
Component.Visible("PartBakje_test Finish:2") = False

oCompOcc = Component.InventorComponent("PartBakje_test2 Finish:2")
oCompOcc.BOMStructure = BOMStructureEnum.kReferenceBOMStructure
Component.Visible("PartBakje_test2 Finish:2") = False
End If

 

 

See attached files.

 

D. Motshagen

 

I'm gathering support to use iProperties in the Model Based General Note annotations, click here to go to the idea in Idea Station.

0 Likes