| Bug ID Number |
BUG-000166286 |
| Submitted | March 26, 2024 |
| Last Modified | December 13, 2024 |
| Applies to | ArcGIS Pro |
| Version found | 3.2.2 |
| Operating System | Windows OS |
| Operating System Version | 10.0 64 Bit |
| Status | In Product Plan
The issue has been added to the development team's backlog. The goal for issues with this status is to address them in a near-term release (next release or two). Check the issue's Additional Information or Alternate Solution section to see if there is helpful information until it can be fully addressed.
|
Additional Information
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.
Steps to Reproduce