<?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: Copyfeatures_management with joined table Q in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126333#M9855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oops! Sorry Tony!&amp;nbsp; I did not realize I did not have the correct capitalization for the qualifiedFieldNames environment setting.&amp;nbsp; Good eye Wayne and Matt!&amp;nbsp; It would be nice if it did throw an exception when there is a typo to let you know it is not a valid env setting.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jan 2013 17:13:39 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2013-01-30T17:13:39Z</dc:date>
    <item>
      <title>Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126325#M9847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I need some help on a script that i am putting together.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Script is as follows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Select feature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Export the selected feature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Load the export feature&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Label the feature&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a shapefile with a joined table in Arcmap. The script runs fine until it gets to the labeling part. I get back Acres filed does not exist to lable. I check the "NewFeatures" layer and i noticed that the attributes fields names were named after the feature class name like vector_D_3, Vector_D4, etc.. and not the actual tables names.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached a picture of what the tables looks after the copyfeatures_management.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy,os, sys import arcpy.mapping # Set workspace arcpy.env.workspace = "C:/Temp" arcpy.env.overwriteOutput = 'True'&amp;nbsp; directory="C:/Temp/Split.pdf" if os.path.exists(directory): &amp;nbsp;&amp;nbsp;&amp;nbsp; try: &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(directory) &amp;nbsp;&amp;nbsp;&amp;nbsp; except: &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Exception: ",str(sys.exc_info()) else: &amp;nbsp;&amp;nbsp;&amp;nbsp; print 'File not found at ',directory&amp;nbsp; #arcpy.RefreshActiveView()&amp;nbsp; mxd = arcpy.mapping.MapDocument("current") df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0] lyr = arcpy.mapping.ListLayers(mxd, "TaxParcels")[0] df.extent = lyr.getSelectedExtent() df.scale = 5000&amp;nbsp; if int(arcpy.GetCount_management("TaxParcels").getOutput(0)) &amp;gt; 0: &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; #arcpy.CopyFeatures_management("TaxParcels", "C:/temp/NewFeatures.shp") &amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis("TaxParcels", "C:/temp/NewFeatures.shp")&amp;nbsp; #Adding Labels layer = arcpy.mapping.ListLayers(mxd, "NewFeatures")[0]&amp;nbsp; if layer.supports("LABELCLASSES"): &amp;nbsp;&amp;nbsp;&amp;nbsp; for lblclass in layer.labelClasses: &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.className = "vector_D_1" #This should be Account &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.expression = "[vector_D_1] &amp;amp; VBNewLine &amp;amp; Round([vector_D_5],2)" #these should be "ACCOUNT" &amp;amp; "ACRES" &amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.showClassLabels = True layer.showLabels = True&amp;nbsp; arcpy.RefreshActiveView()&amp;nbsp; arcpy.mapping.ExportToPDF(mxd,"C:/Temp/Split.pdf", "")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 20:18:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126325#M9847</guid>
      <dc:creator>TonyAlmeida</dc:creator>
      <dc:date>2013-01-29T20:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126326#M9848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I need some help on a script that i am putting together.&lt;BR /&gt;Script is as follows.&lt;BR /&gt;&lt;BR /&gt;1. Select feature&lt;BR /&gt;2. Export the selected feature&lt;BR /&gt;3. Load the export feature&lt;BR /&gt;4. Label the feature&lt;BR /&gt;&lt;BR /&gt;I have a shapefile with a joined table in Arcmap. The script runs fine until it gets to the labeling part. I get back Acres filed does not exist to lable. I check the "NewFeatures" layer and i noticed that the attributes fields names were named after the feature class name like vector_D_3, Vector_D4, etc.. and not the actual tables names.&lt;BR /&gt;&lt;BR /&gt;I have attached a picture of what the tables looks after the copyfeatures_management.&lt;BR /&gt;&lt;BR /&gt;Here is my code.&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy,os, sys
import arcpy.mapping
# Set workspace
arcpy.env.workspace = "C:/Temp"
arcpy.env.overwriteOutput = 'True'

directory="C:/Temp/Split.pdf"
if os.path.exists(directory):
&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(directory)
&amp;nbsp;&amp;nbsp;&amp;nbsp; except:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Exception: ",str(sys.exc_info())
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print 'File not found at ',directory

#arcpy.RefreshActiveView()

mxd = arcpy.mapping.MapDocument("current")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
lyr = arcpy.mapping.ListLayers(mxd, "TaxParcels")[0]
df.extent = lyr.getSelectedExtent()
df.scale = 5000

if int(arcpy.GetCount_management("TaxParcels").getOutput(0)) &amp;gt; 0:
&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp; #arcpy.CopyFeatures_management("TaxParcels", "C:/temp/NewFeatures.shp")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis("TaxParcels", "C:/temp/NewFeatures.shp")

#Adding Labels
layer = arcpy.mapping.ListLayers(mxd, "NewFeatures")[0] 
if layer.supports("LABELCLASSES"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lblclass in layer.labelClasses:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.className = "vector_D_1" #This should be Account
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.expression = "[vector_D_1] &amp;amp; VBNewLine &amp;amp; Round([vector_D_5],2)" #these should be "ACCOUNT" &amp;amp; "ACRES"
&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.showClassLabels = True
layer.showLabels = True

arcpy.RefreshActiveView()

arcpy.mapping.ExportToPDF(mxd,"C:/Temp/Split.pdf", "")
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is because you are exporting to shapefiles.&amp;nbsp; Shapefiles have a limit of 10 characters for field names (just like regular dbase files).&amp;nbsp; By default, joined tables use qualified field names when exported into a new feature class or table.&amp;nbsp; You can change this in the environment settings:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
arcpy.env.qualifiedfieldNames = False
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to ensure that you keep the full field names you should export the new FC's into a geodatabase.&amp;nbsp; Here's some more info on shapefiles:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_considerations_for_shapefile_output/005600000013000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Geoprocessing_considerations_for_shapefile_output/005600000013000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126326#M9848</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T07:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126327#M9849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would have thought the fields name would have been truncated like when you right click a layer that has a joined table and export data.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 21:25:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126327#M9849</guid>
      <dc:creator>TonyAlmeida</dc:creator>
      <dc:date>2013-01-29T21:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126328#M9850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah, I am not exactly sure of the string formatting they use when automatically truncating fields.&amp;nbsp; The way the qualified fields work is "tableName_Field".&amp;nbsp; Therefore using shapefiles is risky business here since it is likely just the fc/table name will take up all or most of the 10 character field name limit.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So do all these fields start out DBO (or does the shapefile name start out vector_DBO)?&amp;nbsp; If that is the case it will have to do the vector_D_1.... and so on because the field names would all be the same if they were just truncated to just the first 10 characters.&amp;nbsp; By changing the qualified fields to false&amp;nbsp; or exporting to a gdb feature class should fix the problem.&amp;nbsp; I think the gdb is the best option though because the field names can be up to 64 characters, usually allowing you to maintain fully qualified field names.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2013 21:48:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126328#M9850</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-01-29T21:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126329#M9851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for the response and help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have added the arcpy.qualifiedfieldNames = False and i am still getting the same results for the NewFeatures table, it's not truncated the fields.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy,os, sys
import arcpy.mapping
# Set workspace
arcpy.env.workspace = "C:/Temp"
arcpy.env.overwriteOutput = 'True'
arcpy.env.qualifiedfieldNames = False

directory="C:/Temp/Split.pdf"
if os.path.exists(directory):
&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(directory)
&amp;nbsp;&amp;nbsp;&amp;nbsp; except:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Exception: ",str(sys.exc_info())
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print 'File not found at ',directory

#arcpy.RefreshActiveView()

mxd = arcpy.mapping.MapDocument("current")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
lyr = arcpy.mapping.ListLayers(mxd, "TaxParcels")[0]
df.extent = lyr.getSelectedExtent()
df.scale = 5000

if int(arcpy.GetCount_management("TaxParcels").getOutput(0)) &amp;gt; 0:
&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp; #arcpy.CopyFeatures_management("TaxParcels", "C:/temp/NewFeatures.shp")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis("TaxParcels", "C:/temp/NewFeatures.shp")

#Adding Labels
layer = arcpy.mapping.ListLayers(mxd, "NewFeatures")[0] 
if layer.supports("LABELCLASSES"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lblclass in layer.labelClasses:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.className = "vector_D_1" #This should be Account
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.expression = "[vector_D_1] &amp;amp; VBNewLine &amp;amp; Round([vector_D_5],2)" #these should be "ACCOUNT" &amp;amp; "ACRES"
&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.showClassLabels = True
layer.showLabels = True

arcpy.RefreshActiveView()

arcpy.mapping.ExportToPDF(mxd,"C:/Temp/Split.pdf", "")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126329#M9851</guid>
      <dc:creator>TonyAlmeida</dc:creator>
      <dc:date>2021-12-11T07:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126330#M9852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Probably just case-sensitivity issue, qualifiedFieldNames, surprised no error was thrown?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 16:44:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126330#M9852</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2013-01-30T16:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126331#M9853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you for the response and help.&lt;BR /&gt;&lt;BR /&gt;i have added the arcpy.qualifiedfieldNames = False and i am still getting the same results for the NewFeatures table, it's not truncated the fields.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy,os, sys
import arcpy.mapping
# Set workspace
arcpy.env.workspace = "C:/Temp"
arcpy.env.overwriteOutput = 'True'
arcpy.env.qualifiedfieldNames = False

directory="C:/Temp/Split.pdf"
if os.path.exists(directory):
&amp;nbsp;&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.remove(directory)
&amp;nbsp;&amp;nbsp;&amp;nbsp; except:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Exception: ",str(sys.exc_info())
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print 'File not found at ',directory

#arcpy.RefreshActiveView()

mxd = arcpy.mapping.MapDocument("current")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
lyr = arcpy.mapping.ListLayers(mxd, "TaxParcels")[0]
df.extent = lyr.getSelectedExtent()
df.scale = 5000

if int(arcpy.GetCount_management("TaxParcels").getOutput(0)) &amp;gt; 0:
&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp;&amp;nbsp; #arcpy.CopyFeatures_management("TaxParcels", "C:/temp/NewFeatures.shp")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Select_analysis("TaxParcels", "C:/temp/NewFeatures.shp")

#Adding Labels
layer = arcpy.mapping.ListLayers(mxd, "NewFeatures")[0] 
if layer.supports("LABELCLASSES"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; for lblclass in layer.labelClasses:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.className = "vector_D_1" #This should be Account
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.expression = "[vector_D_1] &amp;amp; VBNewLine &amp;amp; Round([vector_D_5],2)" #these should be "ACCOUNT" &amp;amp; "ACRES"
&amp;nbsp;&amp;nbsp;&amp;nbsp; lblclass.showClassLabels = True
layer.showLabels = True

arcpy.RefreshActiveView()

arcpy.mapping.ExportToPDF(mxd,"C:/Temp/Split.pdf", "")&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is arcpy.env.qualifiedFieldNames not arcpy.env.qualifiedfieldNames. Case is important.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:10:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126331#M9853</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2021-12-11T07:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126332#M9854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That was a simple mistake....would you please mark Caleb's post as answered - because it was actually his answer that solved your orig problem.&amp;nbsp; We just pitched in to help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;...working on your other additional question now...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 17:02:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126332#M9854</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2013-01-30T17:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Copyfeatures_management with joined table Q</title>
      <link>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126333#M9855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oops! Sorry Tony!&amp;nbsp; I did not realize I did not have the correct capitalization for the qualifiedFieldNames environment setting.&amp;nbsp; Good eye Wayne and Matt!&amp;nbsp; It would be nice if it did throw an exception when there is a typo to let you know it is not a valid env setting.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 17:13:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/copyfeatures-management-with-joined-table-q/m-p/126333#M9855</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-01-30T17:13:39Z</dc:date>
    </item>
  </channel>
</rss>

