| Número de ID do Erro |
BUG-000166286 |
| Enviado | March 26, 2024 |
| Última Modificação | December 13, 2024 |
| Aplica-se à | ArcGIS Pro |
| Versão encontrada | 3.2.2 |
| Sistema Operacional | Windows OS |
| Versão do Sistema Operacional | 10.0 64 Bit |
| Status | In Product Plan
O problema foi adicionado ao acúmulo da equipe de desenvolvimento. O objetivo para problemas com esse status é resolvê-los em uma versão de curto prazo (próxima versão ou duas). Verifique a seção Informações Adicionais ou Solução Alternativa do problema para verificar se há informações úteis até que ele possa ser totalmente resolvido.
|
Informações Adicionais
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);'.
Solução Provisória
Add AssetGroup to the field list in FeatureSetByName.
Etapas para Reproduzir