POST
|
Hey Garry, I'm going to assume you are trying to evaluate attribute rules. So first make sure you have batch calculation or validation rules on the class you want to evaluate. then add that class to a new map, and then right click on the layer on the map, you should see a new context menu AddErrorLayers, if you don't or it is disabled this means you don't have batch rules.
... View more
a month ago
|
0
|
0
|
110
|
BLOG
|
My colleague Koya has just published a blog detailing how you can performing snapping with Attribute rules. Wherever you are, web, mobile, Pro, edits you make can be made more accurate, and it is configurable. Amazing the stuff you can do with attribute rules. Give it a read! https://www.esri.com/arcgis-blog/products/utility-network/arcade/snapping-with-attribute-rules
... View more
09-03-2025
12:49 PM
|
3
|
0
|
132
|
POST
|
I can't tell what is going on but let us verify few things 1) Change the server logs to debug and see if you have entries for attribute rules being evaluated. 2) Does full extent work? 3) create new features and then evaluate them do they get picked up? if that doesn't work Finally try the following. Delete the validation rules, delete the error tables, then add the validation rule again, this will generate the error tables. Makes sure you are using a branch version workspace when you do that. Then delete the feature service and create new map, add your layer and the error tables and publish with the validation server, create a new feature service and test that new feature service..
... View more
08-27-2025
10:23 AM
|
1
|
0
|
201
|
POST
|
I would recommend not writing to the association table directly as it can be error prune. Instead use the provided attribute rules dictionary APIs I authored a blog about it https://www.esri.com/arcgis-blog/products/utility-network/electric-gas/advanced-attribute-rules-creating-utility-network-associations-with-attribute-rules for more advanced cases use this keyword Read more here about "^UN_Association" https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/attribute-rule-dictionary-keywords.htm
... View more
08-12-2025
11:01 AM
|
2
|
1
|
238
|
IDEA
|
This is now available in ArcGIS Pro 3.5. The user can use Attribute rules backstage options to change the default settings and it will persist when restarting Pro.
... View more
08-11-2025
11:03 AM
|
0
|
0
|
123
|
POST
|
This bug has been addressed under BUG-000154445 in 11.1 , and ported to 10.9.1 patch 5, 11.3 should have this fix. If you have a repro case on 11.3 it could be a different bug, I suggest submitting a case. msg me the case number so I can follow up
... View more
08-08-2025
06:44 PM
|
0
|
0
|
119
|
POST
|
If you are looking for junction Edge associations you should use featureSetByAssociation($feature, 'junctionEdge') "Connected" is only for JJ associations
... View more
08-05-2025
09:20 AM
|
2
|
1
|
300
|
BLOG
|
Alot of customers came to me after the demo I did on the UC 2025 asking for the recording (Which we don't do), so I promised a blog post with code and data instead. Hereit is https://www.esri.com/arcgis-blog/products/arcgis-pro/data-management/batch-work-order-generation-with-attribute-rules-uc-2025-demo
... View more
07-25-2025
10:46 AM
|
5
|
0
|
177
|
IDEA
|
Yes it is possible to update the same class with attribute rules and prevent infinite loops, I authored a post detailing this with an example. Prevent Infinite loops in Attribute Rules https://www.esri.com/arcgis-blog/products/arcgis-pro/data-management/prevent-infinite-loops-in-attribute-rules
... View more
07-24-2025
02:13 PM
|
0
|
0
|
120
|
BLOG
|
Reposting this article I authored back in 2021 for visibility as it is not easily searchable. In it I discuss the best practices of authoring and configuring attribute rules. Hopefully you found it useful. https://community.esri.com/t5/attribute-rules-blog/attribute-rule-authoring-and-configuration-tips/ba-p/1023745
... View more
06-30-2025
02:51 PM
|
4
|
1
|
304
|
POST
|
The error "The requested operation is unsupported by instance db" often indicates that the geodatabase the UN is loaded on is not upgraded where some stored procedures maybe required by the application and they are not there. That explains why you are getting it on both enable and applyEdits. Can you try running upgrade geodatabase from your current Pro? Before you do that, take a screenshot of the current geodatabase version, I want to know what geodatabase version you are on because it is been years since I saw this error. You can find out by logging in as sde user and go to the properties. Expand Geodatabase version, upgrade status. Then run upgrade geodatabase gp tool when you are ready. If it works after that, will do some work to improve the doc.
... View more
05-16-2025
01:40 PM
|
0
|
1
|
680
|
POST
|
What version of Pro are you using? We should have yelled with a message that the sequence doesn't exist
... View more
02-07-2025
01:59 PM
|
0
|
0
|
467
|
POST
|
My guess is you might need to account for empty geometries , line 26 points to this "paths": json["rings"], which essentially means it couldn't find the "rings" property in the geometry object you sent to the function. So either you are sending something else (which your code doesn't look like it) or one of your features have an empty geometry that was recently added that broke your script.. try updating this function with this function polygonToPolyline(p) {
var json = Dictionary(Text(p));
if (!haskey(json, "rings")) return;
if (!haskey(json, "spatialReference")) return;
var polylineJSON = {
"paths": json["rings"],
"spatialReference": json["spatialReference"]
};
return Polyline(polylineJSON)
} Now this script may cause other downstream failures so you might want to handle the empty geometry across the rest of the script.
... View more
02-07-2025
01:55 PM
|
0
|
1
|
572
|
POST
|
Can you try installing fiddler and capture the applyEdits call? What does the response looks like? Pro should refresh the map with updated features on the backend, the applyEdits returns a payload called "ServiceEdits" which tells the client the updates that have been made to the server (this includes attribute rules ) Capture what the request parameters (there should be returnEdits or returnServiceEdits parameter) and in the response there should be the edited features payload
... View more
02-05-2025
09:56 AM
|
0
|
0
|
432
|
POST
|
I know this is an answered post but just adding this for additional info. I wrote up a post to explain why. Why FeatureSetByName doesn't work with variables https://community.esri.com/t5/attribute-rules-blog/why-featuresetbyname-doesn-t-work-with-variables/ba-p/1541572
... View more
01-02-2025
06:31 AM
|
0
|
0
|
134
|
Title | Kudos | Posted |
---|---|---|
3 | 09-03-2025 12:49 PM | |
1 | 08-27-2025 10:23 AM | |
2 | 08-12-2025 11:01 AM | |
2 | 08-05-2025 09:20 AM | |
5 | 07-25-2025 10:46 AM |
Online Status |
Offline
|
Date Last Visited |
a month ago
|