<?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: Creating fields Attribute Table on ArcToolbox in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063993#M41572</link>
    <description>&lt;P&gt;Thanks David.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Reading through the info on the link you've sent, it's only given me an option to add individual fields. Please see the example below of what I would like to create.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Malebu_0-1622631174056.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/14817i6B38E449BBD340C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Malebu_0-1622631174056.png" alt="Malebu_0-1622631174056.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jun 2021 10:53:31 GMT</pubDate>
    <dc:creator>Malebu</dc:creator>
    <dc:date>2021-06-02T10:53:31Z</dc:date>
    <item>
      <title>Creating fields Attribute Table on ArcToolbox</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063988#M41570</link>
      <description>&lt;P&gt;Good day&lt;BR /&gt;&lt;BR /&gt;I am having multiple layers (features) and I trying to standardize their attribute table. I am currently looking for a process or script that one could use to design a stand-alone attribute table "fields" within the Arc Toolbox. Meaning this tool I can add to my model and create standard fields within the attribute table. Could you please assist&lt;BR /&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Tsamaelo&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:29:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063988#M41570</guid>
      <dc:creator>Malebu</dc:creator>
      <dc:date>2021-06-02T10:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Creating fields Attribute Table on ArcToolbox</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063991#M41571</link>
      <description>&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063991#M41571</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-06-02T10:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating fields Attribute Table on ArcToolbox</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063993#M41572</link>
      <description>&lt;P&gt;Thanks David.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Reading through the info on the link you've sent, it's only given me an option to add individual fields. Please see the example below of what I would like to create.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Malebu_0-1622631174056.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/14817i6B38E449BBD340C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Malebu_0-1622631174056.png" alt="Malebu_0-1622631174056.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:53:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063993#M41572</guid>
      <dc:creator>Malebu</dc:creator>
      <dc:date>2021-06-02T10:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating fields Attribute Table on ArcToolbox</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063996#M41573</link>
      <description>&lt;P&gt;I don't know of an existing tool you can use to make it less verbose, however it's still pretty simple copy paste stuff.&amp;nbsp; Something like&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;#your fc
in_table = arcpy.GetParameter(0)

#for each field
field_name1 = arcpy.getParameterAsText(1)
field_length1 = int(arcpy.getParameterAsText(2))

arcpy.management.AddField(in_table, field_name1, field_type, {field_precision},
                          {field_scale}, {field_length1}, {field_alias},
                          {field_is_nullable}, {field_is_required}, {field_domain})


field_name2 = arcpy.getParameterAsText(3)
field_length2 = int(arcpy.getParameterAsText(4))

arcpy.management.AddField(in_table, field_name2, field_type, {field_precision},
                          {field_scale}, {field_length2}, {field_alias},
                          {field_is_nullable}, {field_is_required}, {field_domain})&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Jun 2021 11:02:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/creating-fields-attribute-table-on-arctoolbox/m-p/1063996#M41573</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-06-02T11:02:12Z</dc:date>
    </item>
  </channel>
</rss>

