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 Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動