laptop and a wrench

Error

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
Número de ID del error BUG-000157802
EnviadoApril 25, 2023
Última modificaciónJune 5, 2024
Relacionado conArcGIS Pro
Versión encontrada3.1.1
Sistema operativoWindows OS
Versión de sistema operativo10.0 64 Bit
Versión corregida3.2, 3.1.3
EstadoFixed

Información adicional

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

Solución alternativa

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)

Pasos para reproducir

ID del error: BUG-000157802

Software:

  • ArcGIS Pro

Recibir notificaciones cuando cambie el estado de un error

Descargar la aplicación de soporte de Esri

Descubrir más sobre este tema

Obtener ayuda de expertos en ArcGIS

Contactar con el soporte técnico

Descargar la aplicación de soporte de Esri

Ir a opciones de descarga