| 不具合 ID 番号 |
BUG-000166286 |
| 送信されました | March 26, 2024 |
| 最終更新日 | December 13, 2024 |
| 適用対象 | ArcGIS Pro |
| 見つかったバージョン | 3.2.2 |
| オペレーティング システム | Windows OS |
| オペレーティング システムのバージョン | 10.0 64 Bit |
| ステータス | In Product Plan
この問題は、開発チームのバックログに追加されました。 このステータスの問題は、近い将来のリリース (次回または次々回のリリース) で対処することを目標とします。 この問題が完全に対処されるまでの間、問題の「参考情報」および「他の解決策」セクションを調べて、役立つ情報があるかご確認ください。
|
参考情報
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);'.
対処法
Add AssetGroup to the field list in FeatureSetByName.
再現の手順