<?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 Sort not working Properly in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8714729#M134318</link>
    <description>&lt;P&gt;There is a way to sort BOM by more then one column:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of trying to do it this way:&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True, "Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do it this way: first sort by the second column and then by the first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Apr 2019 13:42:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-08T13:42:09Z</dc:date>
    <item>
      <title>BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3630278#M134309</link>
      <description>&lt;P&gt;Dim oDrawDoc As DrawingDocument&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDrawDoc = ThisApplication.ActiveDocument&lt;/P&gt;&lt;P&gt;Dim oSheet As Sheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSheet = oDrawDoc.ActiveSheet&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;Dim oDrawingView As DrawingView&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDrawingView = oSheet.DrawingViews(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Dim oAssydoc As AssemblyDocument&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set oAssydoc = oDrawingView.ReferencedDocumentDescriptor.ReferencedDocument&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Dim oBOM As BOM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set oBOM = oAssydoc.ComponentDefinition.BOM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; oBOM.StructuredViewEnabled = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; oBOM.StructuredViewFirstLevelOnly = False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Dim oBOMView As BOMView&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Set oBOMView = oBOM.BOMViews.Item("Structured")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Call oBOMView.Sort("BOM Structure", True, "Part Number", True, , True)&lt;/P&gt;&lt;P&gt;'&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above line not working properly, It sorts only the first a criteria i.e. BOM Structure. And if change the first one to Part Number the only the part number will work. At any point of time only the first sorting criteria is working.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 14px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Sep 2012 16:21:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3630278#M134309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-22T16:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3631434#M134310</link>
      <description>&lt;P&gt;Is this a bug or something wrong in the above code?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2012 15:22:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3631434#M134310</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-24T15:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3635920#M134311</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;firstly, there is a typo in the last line. The TertiaryColumnTitle&amp;nbsp;&amp;nbsp;is not set, while the&amp;nbsp;TertiaryColumnAscending is set to true.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this is not a problem. Even though I use&amp;nbsp;Call oBOMView.Sort("BOM Structure", True, "Part Number", True), the issue can reproduce. The second c&lt;SPAN&gt;olumn is not sorted.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I logged this issue with the engineer team.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2012 03:43:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3635920#M134311</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2012-09-27T03:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3636340#M134312</link>
      <description>&lt;P&gt;Thanks, Please Let me know if this is solved in upcomming updates.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2012 10:36:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3636340#M134312</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-27T10:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3902002#M134313</link>
      <description>&lt;P&gt;The problem exists in Inventor 2014 also.&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2013 18:41:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3902002#M134313</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-05-01T18:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3903921#M134314</link>
      <description>&lt;P&gt;Good catch.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2013 20:16:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/3903921#M134314</guid>
      <dc:creator>jdkriek</dc:creator>
      <dc:date>2013-05-02T20:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/5514514#M134315</link>
      <description>Still an "issue" in Inventor 2015.</description>
      <pubDate>Fri, 20 Feb 2015 14:56:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/5514514#M134315</guid>
      <dc:creator>mrattray</dc:creator>
      <dc:date>2015-02-20T14:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/5996023#M134316</link>
      <description>&lt;P&gt;&lt;STRONG&gt;STILL an issue in 2016, 4 years later.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ie; Trying to sort BOM with a custom iProp column (Work Order #) sorted first, and mass sorted second.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will sort mass just fine, but I can't set the option for what order to sort the custom iProp; it always sorts ascending even though it is completely numerical..&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 18:27:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/5996023#M134316</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2016-01-19T18:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/7472346#M134317</link>
      <description>&lt;P&gt;Still an issue in Inventor Pro 2017.... Can someone please fix this?!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 21:06:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/7472346#M134317</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-18T21:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8714729#M134318</link>
      <description>&lt;P&gt;There is a way to sort BOM by more then one column:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of trying to do it this way:&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True, "Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do it this way: first sort by the second column and then by the first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #fbfbfb; color: #666666; font-family: 'Artifakt',Tahoma,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 13:42:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8714729#M134318</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-08T13:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8714736#M134319</link>
      <description>&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;There is a way to sort BOM by more then one column:&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;Instead of trying to do it this way:&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&lt;SPAN style="background-color: #fbfbfb; box-sizing: border-box; color: #666666; display: inline; float: none; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True, "Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;Do it this way: first sort by the second column and then by the first.&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&lt;SPAN style="background-color: #fbfbfb; box-sizing: border-box; color: #666666; display: inline; float: none; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("Part Number", True)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="box-sizing: border-box; color: #666666; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; margin: 0px;"&gt;&lt;SPAN style="background-color: #fbfbfb; box-sizing: border-box; color: #666666; display: inline; float: none; font-family: &amp;amp;quot; artifakt&amp;amp;quot;,tahoma,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;oBOMView.Sort("BOM Structure", True)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 13:43:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8714736#M134319</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-08T13:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: BOM Sort not working Properly</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8716202#M134320</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Actually, this never works properly. You might get lucky, but don't bank on it. I guess it depends on your environment, but I had some strict sorting rules, and they never really worked consistently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have found that sorting in the drawing environment to be the most stable.&lt;/P&gt;
&lt;P&gt;Create a dummy drawing and place all the Parts Lists in there. Using iLogic, you can sort multiple parts lists with a few mouse clicks.&lt;/P&gt;
&lt;P&gt;These can then write back to the assemblies, and give a consistent BOM sort. (I wrote some code the other day to sort the BOM by item number, you cant go wrong with that one, LOL)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 23:36:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/bom-sort-not-working-properly/m-p/8716202#M134320</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2019-04-08T23:36:43Z</dc:date>
    </item>
  </channel>
</rss>

