Hi, I am creating a form for a layer. In 1 field, I want to get get a value from another layer (with joined table, it's map service published from a ArcGIS Server) in a same web map.
var treeGrid = FeatureSetByName($map,"GROUNDS.SEQ")
var result = Intersects($feature, treeGrid)
return Upper(first(result)."GROUNDS.TI2_MAX_SEQ.SEQ")
Test execution error: Unexpected text literal.. Verify test data.
(It was fine if i am getting a value from another layer without joined table)
Does Field Maps support accessing values from a layer with joined table in Arcade? is my code correct for this?
thanks a lot!!!
W