<?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: How to reorder fields in a feature class with model builder in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362327#M2339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there is a tool available that does specifically this without creating a new feature class. If I need to accomplish this without creating a new feature class I use python to drop and re-add the fields in the needed order. If its okay to create a new feature class I tend to manipulate a fieldmappings object to specify my needed field order in the newly create feature and then append the previous data into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ArcGIS Idea to add this functionality&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://ideas.arcgis.com/ideaView?id=0873000000087wgAAA"&gt;http://ideas.arcgis.com/ideaView?id=0873000000087wgAAA&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jul 2015 16:20:16 GMT</pubDate>
    <dc:creator>FreddieGibson</dc:creator>
    <dc:date>2015-07-14T16:20:16Z</dc:date>
    <item>
      <title>How to reorder fields in a feature class with model builder</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362326#M2338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to reorder fields in a feature class with model builder?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 16:10:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362326#M2338</guid>
      <dc:creator>JoseSanchez</dc:creator>
      <dc:date>2015-07-14T16:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to reorder fields in a feature class with model builder</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362327#M2339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there is a tool available that does specifically this without creating a new feature class. If I need to accomplish this without creating a new feature class I use python to drop and re-add the fields in the needed order. If its okay to create a new feature class I tend to manipulate a fieldmappings object to specify my needed field order in the newly create feature and then append the previous data into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ArcGIS Idea to add this functionality&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://ideas.arcgis.com/ideaView?id=0873000000087wgAAA"&gt;http://ideas.arcgis.com/ideaView?id=0873000000087wgAAA&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 16:20:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362327#M2339</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-07-14T16:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to reorder fields in a feature class with model builder</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362328#M2340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A while back I developed a custom script tool which could be used in ModelBuilder to reorder the fields in a shapefile. The tool uses the GDAL/OGR library from OSGeo4W.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are interested in diving in to custom Python script tools and open source, let me know and I can share my script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Micah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:06:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362328#M2340</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2015-07-14T17:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to reorder fields in a feature class with model builder</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362329#M2341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creating a new...or overwriting an old...is the only way to do it with the methods listed above.&amp;nbsp; Should want to incorporate scripting in your model, reordering fields in NumPy arrays&amp;nbsp; is trivial.&amp;nbsp;&amp;nbsp; See NumPyArrayToFeatureClass and FeatureClassToNumPyArray in the help plus others.&amp;nbsp; For an example see &lt;A href="https://community.esri.com/migration-blogpost/54633"&gt;Before I forget ... # 3 ... Doing stuff with tabular data in array form&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362329#M2341</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-07-14T17:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to reorder fields in a feature class with model builder</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362330#M2342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be nice if the arrows on the &lt;SPAN style="text-decoration: underline;"&gt;Feature Class to Feature Class&lt;/SPAN&gt; tool actually did what they look like they're supposed to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="419" src="https://community.esri.com/legacyfs/online/128345_pastedImage_0.png" style="height: 419px; width: 496.354px;" width="496" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 17:01:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-reorder-fields-in-a-feature-class-with/m-p/362330#M2342</guid>
      <dc:creator>JasonBalmut</dc:creator>
      <dc:date>2015-09-25T17:01:42Z</dc:date>
    </item>
  </channel>
</rss>

