<?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 Re: BOM Structure - Component Pattern Elements in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457398#M108213</link>
    <description>&lt;P&gt;Hi, here I share an idea to access each occurrence within each element of a pattern of components in an assembly. You will have to put the name of your pattern of components in the string that I have highlighted in green.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;FONT color="#339966"&gt;&lt;STRONG&gt;"Component Pattern 1:1"&lt;/STRONG&gt;&lt;/FONT&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCD&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;RectangularOccurrencePattern&lt;/SPAN&gt; = &lt;SPAN&gt;oCD&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatterns&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPatName&lt;/SPAN&gt;)


&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;"Belt"&lt;/SPAN&gt;, &lt;SPAN&gt;"BucketRowQ"&lt;/SPAN&gt;) = 1 &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElement&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElements&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCC&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;BOMStructure&lt;/SPAN&gt; = 51972
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Please note that this change is made at the assembly level, not at the component level. you can place the same component as a reference in one element and the same component is not a reference in another element of the pattern if you access in this way.&amp;nbsp; &amp;nbsp;Also keep in mind that the code you provide works for a rectangular pattern. If you have a circular pattern you should change the definition of the pattern to&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;CircularOccurrencePattern&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I hope this helps with your work. Cheers!&lt;/P&gt;</description>
    <pubDate>Mon, 20 Apr 2020 22:41:30 GMT</pubDate>
    <dc:creator>Sergio.D.Suárez</dc:creator>
    <dc:date>2020-04-20T22:41:30Z</dc:date>
    <item>
      <title>BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9456981#M108212</link>
      <description>&lt;P&gt;I need to set the BOMStructure of all the elements of a component pattern to reference or default depending on a parameter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initially, I thought it would be as easy as setting the BOMStructure for the pattern:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;"Belt"&lt;/SPAN&gt;, &lt;SPAN&gt;"BucketRowQ"&lt;/SPAN&gt;) = 1 &lt;SPAN&gt;Then&lt;/SPAN&gt;
&lt;SPAN&gt;Component&lt;/SPAN&gt;.&lt;SPAN&gt;InventorComponent&lt;/SPAN&gt;(&lt;SPAN&gt;"Double-Buckets and Hardware"&lt;/SPAN&gt;).&lt;SPAN&gt;BOMStructure&lt;/SPAN&gt; = &lt;SPAN&gt;BOMStructureEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kReferenceBOMStructure&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Apparently that does nothing.&lt;/P&gt;&lt;P&gt;Based on my digging, it looks like I have to deal with each element individually.&lt;/P&gt;&lt;P&gt;The quantities are changing so I need to be able to affect all the elements in the pattern regardless of the quantity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically if the parameter = 1, the BOMStructure of all elements will be reference.&lt;/P&gt;&lt;P&gt;If it = 2 they they will be set to default.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have found some examples dealing with pattern visibility and BOM structure, but not exactly what I need.&lt;/P&gt;&lt;P&gt;I've tried patching some code together but I'm far from experienced. Can't find solutions, but I can find errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 18:42:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9456981#M108212</guid>
      <dc:creator>DewayneH</dc:creator>
      <dc:date>2020-04-20T18:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457398#M108213</link>
      <description>&lt;P&gt;Hi, here I share an idea to access each occurrence within each element of a pattern of components in an assembly. You will have to put the name of your pattern of components in the string that I have highlighted in green.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;FONT color="#339966"&gt;&lt;STRONG&gt;"Component Pattern 1:1"&lt;/STRONG&gt;&lt;/FONT&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCD&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;RectangularOccurrencePattern&lt;/SPAN&gt; = &lt;SPAN&gt;oCD&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatterns&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPatName&lt;/SPAN&gt;)


&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Parameter&lt;/SPAN&gt;(&lt;SPAN&gt;"Belt"&lt;/SPAN&gt;, &lt;SPAN&gt;"BucketRowQ"&lt;/SPAN&gt;) = 1 &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElement&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElements&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCC&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;BOMStructure&lt;/SPAN&gt; = 51972
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Please note that this change is made at the assembly level, not at the component level. you can place the same component as a reference in one element and the same component is not a reference in another element of the pattern if you access in this way.&amp;nbsp; &amp;nbsp;Also keep in mind that the code you provide works for a rectangular pattern. If you have a circular pattern you should change the definition of the pattern to&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;CircularOccurrencePattern&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I hope this helps with your work. Cheers!&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 22:41:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457398#M108213</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2020-04-20T22:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457448#M108214</link>
      <description>&lt;P&gt;Sergio,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I put in the pattern name as instructed and ran the rule but got the following errror:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unable to cast COM object of type 'System.__ComObject' to interface type 'Inventor.RectangularOccurrencePattern'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{A8E2C150-78E9-4E97-A4A0-BF43936B2A45}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the suggestion. Any idea what caused the error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 23:19:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457448#M108214</guid>
      <dc:creator>DewayneH</dc:creator>
      <dc:date>2020-04-20T23:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457497#M108217</link>
      <description>&lt;P&gt;could you share a simple test assembly? you do not need to disclose confidentiality of your files. Just a simple example with a testing parameter. It could be an assembly with a single component and a pattern of this single component. Be sure to share the assembly and this assembly component. Cheers!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 00:10:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9457497#M108217</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2020-04-21T00:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9459334#M108244</link>
      <description>&lt;P&gt;I put together an example. It is greatly simplified, but it should convey the issue. No pun intended.&lt;/P&gt;&lt;P&gt;The example is attached and here is a link to a screencast that displays it in action.&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/2KjhsgC" target="_blank"&gt;https://autode.sk/2KjhsgC&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To summarize:&lt;/P&gt;&lt;P&gt;Basically I have a one or two rows of buckets configuration.&lt;/P&gt;&lt;P&gt;In reality the buckets need to follow a path so in the example I set it up the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For a one row configuration the second row qty is set to one, BOM structure changed to reference, and the visibility is turned off.&lt;/P&gt;&lt;P&gt;For a two row configuration the required quantity is set, BOM structure is changed to default, and the visibility is turned back on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue is presented when the second row is activated.&lt;/P&gt;&lt;P&gt;The BOM structure of the first bucket element is changed to default via ilogic. The problems is by then the other elements of the pattern have been patterned based on the initial reference BOM Structure of the first element.&lt;/P&gt;&lt;P&gt;This is the reason I need to change the BOM structure for all the elements.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my example there is a form in the Belt.ipt to configure the holes, select one of the two options.&lt;/P&gt;&lt;P&gt;In the assembly there is a form that will present one of two rules:&lt;/P&gt;&lt;P&gt;Set bucket - Sets the bucket visibility and was intended to set the bom structure.&lt;/P&gt;&lt;P&gt;BOM Structure fix - This is the rule you supplied displaying the error.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 14:36:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9459334#M108244</guid>
      <dc:creator>DewayneH</dc:creator>
      <dc:date>2020-04-21T14:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9460446#M108325</link>
      <description>&lt;P&gt;Hi, excuse me for being late to answer. It is a heavy week for me.&lt;BR /&gt;The first defect in what I proposed to you previously is the type of generated pattern. for that reason the code will not work for you.&lt;BR /&gt;Your pattern is driven by feature, so you should use the definition "FeatureBasedOccurrencePattern"&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatName&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"Double Row Buckets"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;doc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCD&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;doc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;FeatureBasedOccurrencePattern&lt;/SPAN&gt; = &lt;SPAN&gt;oCD&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatterns&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oPatName&lt;/SPAN&gt;)

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElement&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oPatt&lt;/SPAN&gt;.&lt;SPAN&gt;OccurrencePatternElements&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;BucketTrigger&lt;/SPAN&gt; = 14 &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCC&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;BOMStructure&lt;/SPAN&gt; = 51969 
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; 
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;BucketTrigger&lt;/SPAN&gt; = 6 &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oCC&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ComponentOccurrence&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oEl&lt;/SPAN&gt;.&lt;SPAN&gt;Occurrences&lt;/SPAN&gt;
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;BOMStructure&lt;/SPAN&gt; = 51972
			&lt;SPAN&gt;oCC&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
		&lt;SPAN&gt;Next&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;On the other hand, you are already importing into the assembly a parameter of the part that can serve as control of the assembly. I have entered this parameter inside the For - next instruction&lt;BR /&gt;Please check the assembly and make sure it meets your needs. I hope this helps with your work. Cheers&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 20:27:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9460446#M108325</guid>
      <dc:creator>Sergio.D.Suárez</dc:creator>
      <dc:date>2020-04-21T20:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Structure - Component Pattern Elements</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9462493#M108357</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sergio,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data set worked beautifully.&lt;/P&gt;&lt;P&gt;I did initially have some issues when I updated the new code in my production model.&lt;/P&gt;&lt;P&gt;It was all due to some naming differences between the two model sets.&lt;/P&gt;&lt;P&gt;Once I corrected, it runs like a charm.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 15:04:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bom-structure-component-pattern-elements/m-p/9462493#M108357</guid>
      <dc:creator>DewayneH</dc:creator>
      <dc:date>2020-04-22T15:04:25Z</dc:date>
    </item>
  </channel>
</rss>

