| Numéro d’ID de bogue |
BUG-000166286 |
| Envoi | March 26, 2024 |
| Dernière modification | December 13, 2024 |
| S’applique à | ArcGIS Pro |
| Version trouvée | 3.2.2 |
| Système d’exploitation | Windows OS |
| Version du système d’exploitation | 10.0 64 Bit |
| Statut | In Product Plan
Le problème a été ajouté à la file d’attente de l’équipe de développement. L’objectif est de résoudre les problèmes portant ce statut dans une version à court terme (la prochaine version ou la suivante). En attendant la résolution complète du problème, retrouvez des informations utiles dans la section Informations supplémentaires ou Solution alternative correspondante.
|
Informations supplémentaires
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);'.
Solution de contournement
Add AssetGroup to the field list in FeatureSetByName.
Étapes pour reproduire