Bug
| Bug ID Number | BUG-000181248 |
|---|---|
| Submitted | November 26, 2025 |
| Last Modified | January 12, 2026 |
| Applies to | ArcGIS Pro |
| Version found | 3.5.4 |
| Operating System | Windows Server |
| Operating System Version | 2022 |
| Status | 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");
}
}
Bug ID: BUG-000181248
Software:
Get help from ArcGIS experts
Download the Esri Support App