Hey folks!
I'm facing a problem with an ArcArcade attribute rule in an enterprise environment and could use your expertise. I have a point feature class where the rule should automatically add another point feature when I place a new one. It works like a charm in a local fgdb, but when I try to use it in an enterprise environment, I keep getting this vague error (attached screenshot). The log files are empty too. Any ideas on how I can get this rule to work?
Thanks a ton for your help!
Cheers,
Stefan
This is my Code:
// Create right geometry for transition pipeline cp
var tpGeo = Point({
x: Geometry($feature).x,
y: Geometry($feature).y,
z: -0.90,
spatialReference: Geometry($feature).spatialReference
})
return {
'edit': [{
'className': 'PipelineJunction',
'adds': [
{'attributes': {'ASSETGROUP': 50, 'ASSETTYPE': 902}, 'geometry': tpGeo, 'associationType': 'content'}
]
}],
}
This is the error i recieve:
