Hi,
Scenario: I have a feature class and two different subtypes A and B, these two subtypes are related in a way that field 'source_id' will have the id of a source feature in subtype A and that id (123) will be populated in the 'source' field of the subtype B features.
And there is a field 'children' in subtype A that has the count of the features with 'source = 123' will be populated in the field 'children'.
So I tried creating an attribute rule that does this
1. Upon INSERT/UPDATE/DELETE
2. If any one of the subtype B features gets inserted or updated or deleted 'source = 456'
3. I get a featureset where 'subtype = B And source = 456' and get the count of the returned features
4. Get the featureset where 'subtype = A And source_id = 456' and populate the count in the field 'children'
Problem:
The field children in the triggering feature (subtype =
gets updated.
Q. How do I configure my attribute rule so that I can get trigger from one feature and make edits through attribute rule in another feature