| Bug-ID-Nummer |
BUG-000166286 |
| Eingereicht | March 26, 2024 |
| Zuletzt geändert | December 13, 2024 |
| Gilt für | ArcGIS Pro |
| Gefunden in Version | 3.2.2 |
| Betriebssystem | Windows OS |
| Betriebssystemversion | 10.0 64 Bit |
| Status | In Product Plan
Das Problem wurde dem Backlog des Entwicklungsteams hinzugefügt. Bei Problemen mit diesem Status ist das Ziel, sie in einer der kommenden Versionen zu beheben (in der nächsten oder übernächsten Version). Bis zur vollständigen Problembehebung finden Sie hilfreiche Informationen in den Abschnitten "Zusätzliche Informationen" und "Alternative Lösung" des jeweiligen Problems.
|
Zusätzliche Informationen
There is a change in behavior of attribute rules and how they return features. The feature needs the AssetGroup field and it is not specified in the FeatureSetByName call
'var structure_line_fs = FeatureSetByName($datastore, 'main.StructureLine', ["GLOBALID", "ASSOCIATIONSTATUS", "AssetType"], true);
var structure_edge_fs = FeatureSetByName($datastore, 'main.StructureEdgeObject', ["GLOBALID", "ASSOCIATIONSTATUS", "AssetType"], false);' to 'var structure_line_fs = FeatureSetByName($datastore, 'main.StructureLine', ["GLOBALID", "ASSOCIATIONSTATUS", "AssetType"], true);
var structure_edge_fs = FeatureSetByName($datastore, 'main.StructureEdgeObject', ["GLOBALID", "ASSOCIATIONSTATUS", "AssetType","AssetGroup"], false);'.
Workaround
Add AssetGroup to the field list in FeatureSetByName.
Schritte zur Reproduzierung