laptop and a wrench

Erro

The Insert/Insert/Delete split model returns an error when applied to utility network (linear) feature service layers.

ArcGIS Pro
Número de ID do Erro BUG-000181248
EnviadoNovember 26, 2025
Última ModificaçãoJanuary 12, 2026
Aplica-se àArcGIS Pro
Versão encontrada3.5.4
Sistema OperacionalWindows Server
Versão do Sistema Operacional2022
StatusIn Review

Solução Provisória

To handle scenarios where attribute rules must update attributes after a split, use Arcade expression logic similar to the following:

// If a new feature is inserted, generate a new attribute value

if ($editcontext.editType == "INSERT") {

   return NextSequenceValue("sequence_name");

}

// If the feature is updated and its geometry has changed

else if ($editcontext.editType == "UPDATE" && !Equals(Geometry($originalFeature), Geometry($feature))) {

   // Approximate split detection (i.e. a general geometry update will not always be a split):

   // Sample logic that could be refined is to apply calculation only when

/// geometry changes significantly (e.g., length reduced by ~70%)

   // AND the new feature length is greater than a minimum threshold (e.g., 5 feet)

   if (Length($originalFeature) > 1.43 * Length($feature) && Length($feature) >= 5) {

       return NextSequenceValue("sequence_name");

   }

}

Etapas para Reproduzir

ID do Erro: BUG-000181248

Software:

  • ArcGIS Pro

Seja notificado quando o status de um erro mudar

Baixe o Aplicativo de Suporte da Esri

Descubra mais sobre este tema

Obtenha ajuda de especialistas do ArcGIS

Entre em contato com Suporte Técnico

Baixe o Aplicativo de Suporte da Esri

Ir para as opções de download