<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic iLogic set BOM via Visibility in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610112#M134615</link>
    <description>&lt;P&gt;Hi Inventor users,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code snippets above combined into a rule that sets the BOM structure to Reference if the component is not visible.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' set a reference to the assembly component definintion.
' This assumes an assembly document is open.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition

'Iterate through all of the occurrences
Dim oOccurrence As ComponentOccurrence
For Each oOccurrence In oAsmCompDef.Occurrences
'check for and skip virtual components
If Not TypeOf oOccurrence.Definition Is VirtualComponentDefinition Then
	'set BOM as default if the component is visible
	If Component.Visible(oOccurrence.Name) = True Then
	Component.InventorComponent(oOccurrence.Name).BOMStructure = _
	BOMStructureEnum.kDefaultBOMStructure
	'set BOM as reference if the component is not visible
	ElseIf Component.Visible(oOccurrence.Name) = False Then
	Component.InventorComponent(oOccurrence.Name).BOMStructure = _
	BOMStructureEnum.kReferenceBOMStructure
	End If
Else
End If
Next

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Sep 2012 20:54:50 GMT</pubDate>
    <dc:creator>Curtis_W</dc:creator>
    <dc:date>2012-09-06T20:54:50Z</dc:date>
    <item>
      <title>ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606736#M134610</link>
      <description>&lt;P&gt;Is it possible to have iLogic rule create parts lists out of View Representations?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/Autodesk-Inventor/View-representation-parts-list-error/m-p/3606706/highlight/false" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor/View-representation-parts-list-error/m-p/3606706/highlight/false&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 18:42:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606736#M134610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-04T18:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606774#M134611</link>
      <description>&lt;P&gt;tagging along..&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 18:57:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606774#M134611</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2012-09-04T18:57:01Z</dc:date>
    </item>
    <item>
      <title>iLogic set BOM via LOD</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606984#M134612</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Infoseeker,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are use the iLogic function &lt;STRONG&gt;IsActive&lt;/STRONG&gt; to suppress component instances, their BOM structure is set to Reference. Therefore the suppressed occurrence, and only that&amp;nbsp;occurrence will be removed from the BOM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So &lt;STRONG&gt;IsActive&lt;/STRONG&gt; not only suppresses the&amp;nbsp;occurrence it also set's it's BOM structure as if you'd right clicked on it and selected BOM Structure &amp;gt; Reference. Recall that this is different that setting the BOM structure in the BOM editor or via the Document Settings, those 2 methods set it per file, rather than per assembly occurrence.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this in mind here is an example rule. In this rule you select an item (on screen or in the browser, and it will be toggled on/off, and removed or added to the BOM. This is just a quick example to demonstrate the concept.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But to speak to the original request: I suspect you could use this idea to look at each occurrence in an assembly and check it's visibility setting (per the current Design View Representation) and then toggle the BOM structure for that occurrence to Reference if the occurrence is not visible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm short on time, so I can't have a look at this anytime soon, but I thought I'd throw this out in case someone else wants to give it a shot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;'set a reference to the assembly component definition.
'this assumes an assembly document is open.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition

'get currently selected component
Dim oOccurrence as ComponentOccurrence

Try
  oOccurrence = ThisDoc.Document.SelectSet.Item(1)
Catch
  MessageBox.Show("Please select a component before running this rule.", "iLogic")
  Return
End Try

'set the selected item
'oOccurrence = ThisApplication.ActiveDocument.SelectSet.Item(1)

'activate the Master LOD so we can read in the names of all the components
oAsmCompDef.RepresentationsManager.LevelOfDetailRepresentations("Master").Activate
InventorVb.DocumentUpdate(False)

'define an arraylist to hold the list of  LOD rep names
Dim NameList As New ArrayList()

'define LOD rep 
Dim oLODRep As LevelOfDetailRepresentation

'Look at the LOD reps in the assembly
For Each oLODRep In oAsmCompDef.RepresentationsManager.LevelOfDetailRepresentations
'set the list of names to the array list
NameList.add(oLODRep.Name)
Next

'check for an iLogic LOD rep and create it if not found
If Not NameList.Contains("iLogic LOD") Then
	'create iLogic LOD 
	oLODRep = oAsmCompDef.RepresentationsManager.LevelOfDetailRepresentations.Add("iLogic LOD") 
	oLODRep.Activate
Else 
oLODRep.Activate
End If

'Toggle the selected component's active status
If Component.IsActive(oOccurrence.Name) = True Then
Component.IsActive(oOccurrence.Name) = False
Else
Component.IsActive(oOccurrence.Name) = True
End If

'Save File (set LOD changes)
ThisDoc.Save&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 20:55:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3606984#M134612</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2012-09-04T20:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via LOD</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3607002#M134613</link>
      <description>&lt;P&gt;I think it would be much more user friendly if we toggled the bom structure directly instead of using isactive. This way we needn't deal with any LOD headaches.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use these snippets to control the bom structure at the assembly level:&lt;/P&gt;&lt;PRE&gt;Component.InventorComponent("occurence").BOMStructure = BOMStructureEnum.kDefaultBOMStructure
Component.InventorComponent("occurence").BOMStructure = BOMStructureEnum.kReferenceBOMStructure&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could then use a loop to cycle through each occurence checking it's visibility setting per Curtis's suggestion and set it's bom structure accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 21:01:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3607002#M134613</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2012-09-04T21:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via LOD</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3607008#M134614</link>
      <description>&lt;P&gt;Hi mrattray,&lt;/P&gt;&lt;P&gt;I think you're spot on. And here's a snippet I had on hand, to iterate though the component occurrences of the assembly&amp;nbsp; in case it helps someone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' set a reference to the assembly component definintion.
' This assumes an assembly document is open.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition

'Iterate through all of the occurrences
Dim oOccurrence As ComponentOccurrence
For Each oOccurrence In oAsmCompDef.Occurrences
'check for and skip virtual components
'(in case a virtual component trips things up)
If Not TypeOf oOccurrence.Definition Is VirtualComponentDefinition Then
'Show occurrence name In the message box body
MessageBox.Show(oOccurrence.Name, "iLogic")
Else
End If
Next&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2012 21:04:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3607008#M134614</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2012-09-04T21:04:39Z</dc:date>
    </item>
    <item>
      <title>iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610112#M134615</link>
      <description>&lt;P&gt;Hi Inventor users,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code snippets above combined into a rule that sets the BOM structure to Reference if the component is not visible.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' set a reference to the assembly component definintion.
' This assumes an assembly document is open.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition

'Iterate through all of the occurrences
Dim oOccurrence As ComponentOccurrence
For Each oOccurrence In oAsmCompDef.Occurrences
'check for and skip virtual components
If Not TypeOf oOccurrence.Definition Is VirtualComponentDefinition Then
	'set BOM as default if the component is visible
	If Component.Visible(oOccurrence.Name) = True Then
	Component.InventorComponent(oOccurrence.Name).BOMStructure = _
	BOMStructureEnum.kDefaultBOMStructure
	'set BOM as reference if the component is not visible
	ElseIf Component.Visible(oOccurrence.Name) = False Then
	Component.InventorComponent(oOccurrence.Name).BOMStructure = _
	BOMStructureEnum.kReferenceBOMStructure
	End If
Else
End If
Next

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 20:54:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610112#M134615</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2012-09-06T20:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610174#M134616</link>
      <description>&lt;P&gt;Awesome!&amp;nbsp;Thanks.&lt;/P&gt;&lt;P&gt;This rule needs to be added to the .idw or .iam?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:32:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610174#M134616</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-06T21:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610186#M134617</link>
      <description>&lt;P&gt;I guess assembly.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:37:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610186#M134617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-06T21:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610206#M134618</link>
      <description>&lt;P&gt;Does not work for me, maybe because I also use in my parts list substitute and grouping option... Or I am just missing something.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:50:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3610206#M134618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-06T21:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3611048#M134619</link>
      <description>&lt;P&gt;How does it not work? Is there an error message? Did you put it in the assembly?(it has no business being in the idw) Does it do something unexpected? We need more information than "it doesn't work" if we're going to be of any help to you. Can you post the files here?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 14:48:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3611048#M134619</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2012-09-07T14:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3611254#M134620</link>
      <description>&lt;P&gt;Yes, I figured out&amp;nbsp;it has no business to be in .idw file, as you can see in my previous post.&lt;/P&gt;&lt;P&gt;The rule&amp;nbsp;has been added to the main assembly file, the one with View Reps that are used for parts lists generation.&lt;/P&gt;&lt;P&gt;I wrote it does not work,&amp;nbsp;with no detailed description, because it just does not work: makes no difference if the rule is there or if is not. No warnings, pop ups, no nothing. No changes to Parts Lists display:&amp;nbsp;total number of the parts is shown if only one out of few is visible in the view.&lt;/P&gt;&lt;P&gt;Does it work for you?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2012 16:36:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3611254#M134620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-07T16:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3617512#M134621</link>
      <description>&lt;P&gt;Anyone had a chance to test it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2012 18:47:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3617512#M134621</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-12T18:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3619368#M134622</link>
      <description>&lt;P&gt;The code posted by Curtis, works as he descibed. I tested it in a simple assembly&lt;/P&gt;&lt;P&gt;changing a component to be not visible changes the BOM structure to Reference and vice versa&lt;/P&gt;&lt;P&gt;Are you sure the rule is being fired?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2012 19:18:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3619368#M134622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-13T19:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3619478#M134623</link>
      <description>&lt;P&gt;When I open standard template, the rule seems to work partially; it&amp;nbsp;sets&amp;nbsp;parts to reference parts but then BOM does not&amp;nbsp;change when I turn visibility&amp;nbsp;on and off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The other thing is that my QTY comes from iproperty, that&amp;nbsp;is connected to user parameters of a part, not actual number of&amp;nbsp;parts in assembly. Then iproperty&amp;nbsp;numbers are&amp;nbsp;substituted for QTY.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the picture you can see that I have 3 parts out of 6 visible, BOM shows only 1, the rest is set to reference.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2012 20:11:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3619478#M134623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-13T20:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672664#M134624</link>
      <description>&lt;P&gt;I am using Inventor 2012 with 64 bit Windows 7.&lt;/P&gt;&lt;P&gt;I have the view representation assembly open.&lt;/P&gt;&lt;P&gt;Created the rule, cut and pasted the code.&lt;/P&gt;&lt;P&gt;I&amp;nbsp;am getting the following Errors:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rule Compile Errors in View_Rep_BOM, in 11-647-12.iam&lt;/P&gt;&lt;P&gt;Error on Line 13 : Method arguments must be enclosed in parentheses.&lt;/P&gt;&lt;P&gt;Error on Line 17 : Method arguments must be enclosed in parentheses.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried putting brackets in, but cannot make it happy. Any help would be much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 18:27:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672664#M134624</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-24T18:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672690#M134625</link>
      <description>&lt;P&gt;Sometimes copy/paste from this board scews up code. Nobody knows why. Copy your rule and paste into a txt file, post it, and I'll correct it.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 18:55:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672690#M134625</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2012-10-24T18:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: ILogic help needed!</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672698#M134626</link>
      <description>&lt;P&gt;If you're still workin on this, can you post your data set?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 18:57:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672698#M134626</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2012-10-24T18:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672700#M134627</link>
      <description>&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 18:59:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672700#M134627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-24T18:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672714#M134628</link>
      <description>&lt;P&gt;The code looks fine to me. Is that the entire contents of the rule, or do you have another section that you didn't include? You can try this copy, it's just reformated a little.&lt;/P&gt;&lt;P&gt;If that is the whole rule and the new copy doesn't work then can you post up the data set for me to investigate?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:09:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672714#M134628</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2012-10-24T19:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic set BOM via Visibility</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672734#M134629</link>
      <description>&lt;P&gt;Thanks Mike (not Matt)&lt;/P&gt;&lt;P&gt;That was the whole rule.&lt;/P&gt;&lt;P&gt;I don't see that you sent any copy for me.&lt;/P&gt;&lt;P&gt;I am not sure what you require when you ask for the data set.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:24:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-help-needed/m-p/3672734#M134629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-24T19:24:43Z</dc:date>
    </item>
  </channel>
</rss>

