laptop and a wrench

漏洞

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

ArcGIS Pro
漏洞 ID 编号 BUG-000181248
已提交November 26, 2025
上次修改时间January 12, 2026
适用范围ArcGIS Pro
找到的版本3.5.4
操作系统Windows Server
操作系统版本2022
状态In Review

解决办法

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");

   }

}

重现步骤

漏洞 ID: BUG-000181248

软件:

  • ArcGIS Pro

当漏洞状态发生变化时获得通知

下载 Esri 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项