I have an attribute rule that is working in SDE to update a parent feature class field when a new entry is added to a related table. The rule is not working when edits are made in the webapp.
Is it not possible for attribute rules to carry over to webapps in Portal?
One guess I have is the thousands separator. The web map is configured to exclude the comma, but the editor widget ignores this setting. The code is based off a range of values :
if ($feature.GPM >= 1500) {
new_value = "Blue - 1500 GPM or Greater";
}
else if ($feature.GPM >= 1000) {
new_value = "Green - 1000-1499 GPM";