laptop and a wrench

Bug

The Field Map parameter in the Append tool does not recognize the matching fields of a layer with editor tracking enabled in ArcGIS Pro.

ArcGIS Pro
Bug-ID-Nummer BUG-000157802
EingereichtApril 25, 2023
Zuletzt geändertJune 5, 2024
Gilt fürArcGIS Pro
Gefunden in Version3.1.1
BetriebssystemWindows OS
Betriebssystemversion10.0 64 Bit
Behoben in Version3.2, 3.1.3
StatusFixed

Zusätzliche Informationen

This issue is addressed in ArcGIS Pro 3.2 and ArcGIS Pro 3.1.3.

Workaround

The following Python script works to enable the editor tracking fields to be append and match the source dataset:

######################################

import arcpy

source = <link to source data>

target = <link to target data>

arcpy.env.preserveGlobalIds = True # can comment out this line if data does not have GlobalIds or if do not wish to preserve GlobalIds

arcpy.TruncateTable_management(target)

myFieldMappings = arcpy.FieldMappings()

myFieldMappings.addTable(target)

for fmi in range(myFieldMappings.fieldCount):

fm = myFieldMappings.getFieldMap(fmi)

 for targetfield_index in range(fm.inputFieldCount):

  intable = fm.getInputTableName(targetfield_index)

  if intable == arcpy.Describe(target).catalogPath:

fm.removeInputField(targetfield_index)

   myFieldMappings.replaceFieldMap(fmi, fm)

   break

    

for fmi in range(myFieldMappings.fieldCount):

fm = myFieldMappings.getFieldMap(fmi)

 targetFieldName = fm.outputField.name

 sourceFieldList = arcpy.ListFields(source,targetFieldName)

 for f in sourceFieldList:

 if (len(sourceFieldList)) > 0:

  sourceField = sourceFieldList[0]

  newFMap = arcpy.FieldMap()

 newFMap.addInputField(source,sourceField.name)

  myFieldMappings.replaceFieldMap(fmi, newFMap)

arcpy.Append_management(source, target, "NO_TEST", myFieldMappings)

Schritte zur Reproduzierung

Bug-ID: BUG-000157802

Software:

  • ArcGIS Pro

Benachrichtigung erhalten, wenn sich der Status eines Bugs ändert

Esri Support App herunterladen

Weitere Informationen zu diesem Thema erkunden

Unterstützung durch ArcGIS-Experten anfordern

An den technischen Support wenden

Esri Support App herunterladen

Zu Download-Optionen wechseln