Hello,
I have a fairly simple arcade script that has been working for the past 6 years, but is now returning error, 002717.
From what I understand, this is a bug? Is there a work around for it? I pasted the code for anyone to look at.
Basically the script will update the CH_AREA_FK with an MSLINK value from the "Character Area" feature class when a point is placed on the map.
Cheers,
Justin
var CHAreas = FeatureSetByName($datastore, 'CharacterArea', ["MSLINK"], true);
var OverlapCHAreas= Upper(DomainName(First(Intersects(CHAreas, Geometry($feature))), 'MSLINK'));
if (isEmpty($feature.CH_AREA_FK)){
return OverlapCHAreas;
}
return $feature.CH_AREA_FK