| Número de ID del error |
BUG-000166286 |
| Enviado | March 26, 2024 |
| Última modificación | December 13, 2024 |
| Relacionado con | ArcGIS Pro |
| Versión encontrada | 3.2.2 |
| Sistema operativo | Windows OS |
| Versión de sistema operativo | 10.0 64 Bit |
| Estado | In Product Plan
El problema se ha agregado al registro de pedidos del equipo de desarrollo. El objetivo de los problemas con este estado es solucionarlos en una próxima versión (próxima versión o dos). Consulte las secciones Información adicional y Solución alternativa, si existe, para obtener información útil hasta que pueda solucionarse.
|
Información adicional
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);'.
Solución alternativa
Add AssetGroup to the field list in FeatureSetByName.
Pasos para reproducir