<?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: Append feature classes using Python  in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370030#M29251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you tried a comma delimited list as inputs rather than a semi-colon delimited string?&amp;nbsp;&lt;/P&gt;&lt;P&gt;The help isn't clear as to what is acceptable&lt;/P&gt;&lt;P&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm"&gt;http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jul 2018 15:31:30 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2018-07-05T15:31:30Z</dc:date>
    <item>
      <title>Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370029#M29250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 5 point feature classes that I am trying to append into a point feature class.&amp;nbsp; I get the following error when I attempt to run the code shown below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Failed to execute. Parameters are not valid.&lt;BR /&gt;ERROR 000338: Inputs must be either all Feature Classes, Tables or Rasters; not mixed.&lt;BR /&gt;Failed to execute (Append).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can run the append successfully when using the Append tool in Desktop.&amp;nbsp; I am at a loss as to why the code throws the error.&amp;nbsp; Any insight would be very much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Import arcpy module&lt;BR /&gt;import arcpy&lt;BR /&gt;import os&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SDE = r'C:\Development\py1\gis@GISDEV02 frt (emadb51 DC) - VegD2.sde'&lt;/P&gt;&lt;P&gt;# Set local variables&lt;BR /&gt;FC_Inven = os.path.join(SDE, 'GIS.VegD_Inventory')&lt;BR /&gt;FC_Unit = os.path.join(SDE, 'GIS.VegD_Unit_Inventory')&lt;BR /&gt;FC_Hrly2 = os.path.join(SDE, 'GIS.VegD_Hourly_Inventory')&lt;BR /&gt;FC_Hrly = os.path.join(SDE, 'GIS.VegD_Hourly')&lt;BR /&gt;FC_Flat = os.path.join(SDE, 'GIS.VegD_FlatRate')&lt;BR /&gt;FC_Matrix = os.path.join(SDE, 'GIS.VegD_Matrix')&lt;BR /&gt;schemaType = "NO_TEST"&lt;BR /&gt;fieldMappings = ""&lt;BR /&gt;subtype = ""&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Truncate Table&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.TruncateTable_management(FC_Inven)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Process: Append the feature classes into the empty feature class&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Append_management('FC_Unit; FC_Hrly2; FC_Hrly; FC_Flat; FC_Matrix', FC_Inven, schemaType, &amp;nbsp;&amp;nbsp;&amp;nbsp;fieldMappings, subtype)&lt;/P&gt;&lt;P&gt;except Exception as err:&lt;BR /&gt;print(err.args[0])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 13:53:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370029#M29250</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T13:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370030#M29251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you tried a comma delimited list as inputs rather than a semi-colon delimited string?&amp;nbsp;&lt;/P&gt;&lt;P&gt;The help isn't clear as to what is acceptable&lt;/P&gt;&lt;P&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm"&gt;http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 15:31:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370030#M29251</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-07-05T15:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370031#M29252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion. I just tried a comma delimited list and got the same error message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 15:40:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370031#M29252</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T15:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370032#M29253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Append_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;','&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;FC_Unit&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Hrly2&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Hrly&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Flat&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Matrix&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Inven&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; schemaType&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldMappings&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; subtype&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 15:59:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370032#M29253</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-07-05T15:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370033#M29254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to set the&amp;nbsp;arcpy.env.workspace with the SDE path and just call the name of the FC in the list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 16:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370033#M29254</guid>
      <dc:creator>Juan_ManuelAngel_Cuartas</dc:creator>
      <dc:date>2018-07-05T16:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370034#M29255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this and got the following message in the python interpreter: join() takes exactly one argument (5 given)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 16:56:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370034#M29255</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T16:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370035#M29256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I get the same error message when I try this approach as well.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:19:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370035#M29256</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T17:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370036#M29257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, sorry, forgot to wrap them in a list.&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;arcpy&lt;SPAN class=""&gt;.&lt;/SPAN&gt;Append_management&lt;SPAN class=""&gt;(&lt;/SPAN&gt; &lt;SPAN class=""&gt;','&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;join&lt;SPAN class=""&gt;([&lt;/SPAN&gt;FC_Unit&lt;SPAN class=""&gt;,&lt;/SPAN&gt; FC_Hrly2&lt;SPAN class=""&gt;,&lt;/SPAN&gt; FC_Hrly&lt;SPAN class=""&gt;,&lt;/SPAN&gt; FC_Flat&lt;SPAN class=""&gt;,&lt;/SPAN&gt; FC_Matrix]&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt; FC_Inven&lt;SPAN class=""&gt;,&lt;/SPAN&gt; schemaType&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldMappings&lt;SPAN class=""&gt;,&lt;/SPAN&gt; subtype&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:20:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370036#M29257</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-07-05T17:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370037#M29258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get the same error.&amp;nbsp; I am going to copy the 6 feature classes into a fgdb and run the script on it to see if the error persists.&amp;nbsp; Thanks for taking the time to offer some assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:40:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370037#M29258</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T17:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370038#M29259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same error?&amp;nbsp; Did you re-copy and paste my code?&amp;nbsp; The square brackets I added to the code should have made the join error go away.&amp;nbsp; There still may be an error, I am just surprised you are getting a join error still.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:47:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370038#M29259</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-07-05T17:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370039#M29260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for my lack of clarity.&amp;nbsp; The&amp;nbsp;"same error" I was referring to is based on my original post.&amp;nbsp; Your revision did address the argument message when I attempted to run your initial line of code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 17:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370039#M29260</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T17:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370040#M29261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The help example uses a list for the feature classes, not a delimited string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/append.htm"&gt;Append—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 18:34:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370040#M29261</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2018-07-05T18:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370041#M29262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Darren... already suggested with not diff&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/782971-re-append-feature-classes-using-python?commentID=782971#comment-782971"&gt;https://community.esri.com/message/782971-re-append-feature-classes-using-python?commentID=782971#comment-782971&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 18:56:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370041#M29262</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-07-05T18:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370042#M29263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get the same&amp;nbsp;ERROR 000338 when I copied the feature classes to a fgdb and modified the code to reference it and run it.&amp;nbsp; I then tried using the Append tool and navigating to the fcs within the tool to add them with their entire fgdb path - it ran successfully.&amp;nbsp; I went to the results, right-clicked and copied as code snippet.&amp;nbsp; I took the input and target syntax from that code and replaced my append input and target parameters with it and ran the code&amp;nbsp;-&amp;nbsp;it worked successfully.&amp;nbsp; I repeat these steps with a database connection and was successful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/413323_Capture.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.Append_management("'C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_FlatRate';'C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_Hourly';'C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_Matrix';'C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_Hourly_Inventory';'C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_Unit_Inventory'", "C:/Development/py1/gis@GISDEV02 frt (emadb51 DC) - VegD2.sde/GIS.VegD_Inventory", schemaType,&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldMappings, subtype)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still don't know why when I attempt to clean this line of code up using variables, it results in the ERROR 000338.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 18:57:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370042#M29263</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-05T18:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370043#M29264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perhaps there is some internal workings that handle the punctuation and spaces that isn't activated through arcpy calls to the tool directly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 19:06:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370043#M29264</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-07-05T19:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370044#M29265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, so it was. I thought you meant comma-delimited string. You can't make a list any other way&amp;nbsp;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 19:16:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370044#M29265</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2018-07-05T19:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Append feature classes using Python</title>
      <link>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370045#M29266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error was caused by the Append input being interpreted as a string as opposed to variables.&amp;nbsp; Below is syntax that worked for me.&amp;nbsp; Thanks to all for your assistance with my issue!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Append_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'"'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; FC_Unit &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; FC_Hrly2 &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; FC_Hrly &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; FC_Flat &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;';'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; FC_Matrix &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'"'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FC_Inven&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; schemaType&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldMappings&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; subtype&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2018 12:29:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-feature-classes-using-python/m-p/370045#M29266</guid>
      <dc:creator>EdwardGlover1</dc:creator>
      <dc:date>2018-07-12T12:29:33Z</dc:date>
    </item>
  </channel>
</rss>

