<?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: BOMView.Renumber in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6890035#M70346</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good catch, I forgot that I use a custom field of "TYPE", did not even see that. (Been a long time since I used that code.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Feb 2017 11:21:08 GMT</pubDate>
    <dc:creator>rhasell</dc:creator>
    <dc:date>2017-02-20T11:21:08Z</dc:date>
    <item>
      <title>BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6885184#M70290</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i need a little help to renumber the bom in an assembly and sort it.&lt;/P&gt;&lt;P&gt;Has anyony of you a Little code for me?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards from germany&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 10:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6885184#M70290</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2017-02-17T10:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889233#M70324</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my experience, sorting the BOM from the Assembly is inefficient, you can only sort with one filter (I know that you are supposed to sort with more than one, but it does not work as expected)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I find that sorting via the IDW is far better. Curtis has some code on his blog which can help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway here is some code to help you sort in the Assembly Environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' Set a reference to the assembly document.
' This assumes an assembly document is active.
Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

' Set a reference to the BOM
Dim oBOM As BOM
oBOM = oDoc.ComponentDefinition.BOM

' Make sure that the parts only view is enabled.
    oBOM.PartsOnlyViewEnabled = True

' Set a reference to the "Parts Only" BOMView
Dim oBOMView As BOMView
oBOMView = oBOM.BOMViews.Item("Parts Only")


Call oBOMView.Sort("BOM Structure",True ,"TYPE",True ,"Stock Number",True)

'Re-Number the BOM
Call oBOMView.Renumber(1, 1)
MessageBox.Show("Done", "Sort BOM")&lt;/PRE&gt;</description>
      <pubDate>Sun, 19 Feb 2017 23:55:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889233#M70324</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2017-02-19T23:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889555#M70330</link>
      <description>&lt;P&gt;Thanks for reply rhasell,&lt;/P&gt;&lt;P&gt;i get the following message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;System.ArgumentException: Falscher Parameter. (Ausnahme von HRESULT: 0x80070057 (E_INVALIDARG))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp;amp; msgData)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei Inventor.BOMViews.get_Item(Object Index)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei LmiRuleScript.Main()&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei Autodesk.iLogic.Exec.AppDomExec.ExecRuleInAssembly(Assembly assem)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei iLogic.RuleEvalContainer.ExecRuleEval(String execRule)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a beginner with iLogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i like to do is: To renumber the Position in an structured bom assembly, for example:&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 2, 4, 7&amp;nbsp;&amp;nbsp; renumber to&amp;nbsp;&amp;nbsp; &amp;nbsp;1,2,3,4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 06:36:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889555#M70330</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2017-02-20T06:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889573#M70331</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I quickly had a look in the help files and made this up for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a look and see if this fixes your problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I changed it to sort the structured list&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' Set a reference to the assembly document.
' This assumes an assembly document is active.
Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

' Set a reference to the BOM
Dim oBOM As BOM
oBOM = oDoc.ComponentDefinition.BOM
	oBOM.StructuredViewFirstLevelOnly = False
	oBOM.StructuredViewEnabled = True
	Dim oStructuredBOMView As BOMView
    oStructuredBOMView = oBOM.BOMViews.Item("Structured")
Call oStructuredBOMView.Sort("BOM Structure",True ,"TYPE",True ,"Stock Number",True)
Call oStructuredBOMView.Renumber(1, 1)
MessageBox.Show("Done", "Sort BOM")&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Feb 2017 06:46:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889573#M70331</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2017-02-20T06:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889586#M70332</link>
      <description>&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;but i get a mistake message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;System.ArgumentException: Falscher Parameter. (Ausnahme von HRESULT: 0x80070057 (E_INVALIDARG))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp;amp; msgData)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei Inventor.BOM.set_StructuredViewFirstLevelOnly(Boolean )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei LmiRuleScript.Main()&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei Autodesk.iLogic.Exec.AppDomExec.ExecRuleInAssembly(Assembly assem)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;bei iLogic.RuleEvalContainer.ExecRuleEval(String execRule)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards Martin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 06:56:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889586#M70332</guid>
      <dc:creator>martinhoos</dc:creator>
      <dc:date>2017-02-20T06:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889593#M70333</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully someone can jump in here, I have to leave the office and can only get back to it tomorrow.&lt;/P&gt;&lt;P&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@F462EEC827775DA92CB03B7FC147D389/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 07:01:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889593#M70333</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2017-02-20T07:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889849#M70341</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code provided by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/371344"&gt;@rhasell&lt;/a&gt;&amp;nbsp;seems to work for me.&lt;/P&gt;
&lt;P&gt;The only change I had to make to it, was that in the &lt;STRONG&gt;Sort&lt;/STRONG&gt; method, I had to ensure that the column name existed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is, in the following line of code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Call oStructuredBOMView.Sort("BOM Structure",True ,"TYPE",True ,"Stock Number",True)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, there has to be existing&amp;nbsp;columns with Titles "BOM Structure" , "TYPE" and "Stock Number", else it may throw up an error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Sajith&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 09:30:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6889849#M70341</guid>
      <dc:creator>sajith_subramanian</dc:creator>
      <dc:date>2017-02-20T09:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6890035#M70346</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good catch, I forgot that I use a custom field of "TYPE", did not even see that. (Been a long time since I used that code.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 11:21:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6890035#M70346</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2017-02-20T11:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6890044#M70347</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Therefore:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;' Set a reference to the assembly document.
' This assumes an assembly document is active.
Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

' Set a reference to the BOM
Dim oBOM As BOM
oBOM = oDoc.ComponentDefinition.BOM
	oBOM.StructuredViewFirstLevelOnly = False
	oBOM.StructuredViewEnabled = True
	Dim oStructuredBOMView As BOMView
    oStructuredBOMView = oBOM.BOMViews.Item("Structured")
Call oStructuredBOMView.Sort("Stock Number",True)
Call oStructuredBOMView.Renumber(1, 1)
MessageBox.Show("Done", "Sort BOM")&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Feb 2017 11:24:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/6890044#M70347</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2017-02-20T11:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9402421#M107369</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/371344" target="_self"&gt;rhasell&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I know this is an old post but it has functionality that I need. I am able to run the code without any errors but it has no effect on the assembly BOM. Any assistance would be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 17:23:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9402421#M107369</guid>
      <dc:creator>J_Dumont</dc:creator>
      <dc:date>2020-03-26T17:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9403170#M107382</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;When you mention "Assembly BOM" what are you referring to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above rule will sort the "Structured" list only, try the following to add Parts as well.&lt;/P&gt;&lt;P&gt;The rule sorts on "Stock Number" change that to suit your BOM, EG: "Part Number" or "Description"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;' Set a reference to the assembly document.
' This assumes an assembly document is active.
Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

' Set a reference to the BOM
Dim oBOM As BOM
oBOM = oDoc.ComponentDefinition.BOM

oBOM.StructuredViewFirstLevelOnly = False ' Display All levels
oBOM.StructuredViewEnabled = True
oBOM.PartsOnlyViewEnabled = True
Dim oStructuredBOMView As BOMView
oStructuredBOMView = oBOM.BOMViews.Item("Structured")

' Set a reference to the "Parts Only" BOMView
Dim oPartBOMView As BOMView
oPartBOMView = oBOM.BOMViews.Item("Parts Only")

Call oStructuredBOMView.Sort("Stock Number", True)
oPartBOMView.Sort("Stock Number",True) 
Call oPartBOMView.Renumber(1, 1)
Call oStructuredBOMView.Renumber(1, 1)
MessageBox.Show("Done", "Sort BOM")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 23:17:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9403170#M107382</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2020-03-26T23:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9404174#M107405</link>
      <description>&lt;P&gt;Sorry I wasn't clear. In regards to assembly BOM, I'm referencing the BOM in an assembly document. For whatever reason, the code has no effect on the sorting or renumber. I need to work with the Structured BOM and I would like to sort on, "Stock Number" and "Unit Qty" and once sorted I would like the renumber.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 11:59:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9404174#M107405</guid>
      <dc:creator>J_Dumont</dc:creator>
      <dc:date>2020-03-27T11:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9408172#M107445</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Try this, if it still does not work, then can you share a data set so that we can test it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;' Set a reference to the assembly document.
' This assumes an assembly document is active.
Dim oDoc As AssemblyDocument
oDoc = ThisApplication.ActiveDocument

' Set a reference to the BOM
Dim oBOM As BOM
oBOM = oDoc.ComponentDefinition.BOM

oBOM.StructuredViewFirstLevelOnly = False ' Display All levels
oBOM.StructuredViewEnabled = True
Dim oBOMView As BOMView
oBOMView = oBOM.BOMViews.Item("Structured")

' Set a reference to the "Parts Only" BOMView
Call oBOMView.Sort("Stock Number", True, "Unit QTY", True)
Call oBOMView.Renumber(1, 1)
MessageBox.Show("Done", "Sort BOM")&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 29 Mar 2020 22:44:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9408172#M107445</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2020-03-29T22:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9411840#M107494</link>
      <description>&lt;P&gt;Good morning.&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;In testing your code it seems to work as long as I don't have a sorting done by selecting any particular column. See the attached image. The only way I am able to clear the predefined sort is to use Sort and specify any column. See attached Screencast. Once the predefined Sort is cleared the code works properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-03-31_7-00-14.png" style="width: 908px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/747831iEFB0504093305303/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-03-31_7-00-14.png" alt="2020-03-31_7-00-14.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/2JuuIyl" target="_blank"&gt;https://autode.sk/2JuuIyl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 11:08:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9411840#M107494</guid>
      <dc:creator>J_Dumont</dc:creator>
      <dc:date>2020-03-31T11:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9413538#M107523</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, I understand, I have looked for any command that will do a "Clear Sort" before you run the code, but I am unable to find it. So it is still a manual option of right click and select "clear sort".&lt;/P&gt;&lt;P&gt;I suggest that you check your template to ensure that there is no preset sorting in place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On a different note, in my experience, I have found that if you are sorting with multiple columns, it is better to do a Parts List sort in a drawing, and then writing the changes back to the assembly. (This still does not override the forced sort option)&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 22:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9413538#M107523</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2020-03-31T22:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: BOMView.Renumber</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9421182#M107644</link>
      <description>Thank you for all your assistance with this.&lt;BR /&gt;&lt;BR /&gt;I understand that working in the parts list seems to be easier but I need&lt;BR /&gt;to go through the Bom and create/edit custom UDP for parts before creating&lt;BR /&gt;a drawing and parts list.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Apr 2020 20:44:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/bomview-renumber/m-p/9421182#M107644</guid>
      <dc:creator>J_Dumont</dc:creator>
      <dc:date>2020-04-03T20:44:41Z</dc:date>
    </item>
  </channel>
</rss>

