On our Moorland Bird Survey app we are putting together for the surveyors. One of the layers is coming up with 'The form contains unsupported data' Now looking at it we have used Arcade for Now() for when updated, using the Arcade for updating a field based on another to get the grid location.
We have a variety of Combo boxes....
This only happens when we use it offline. Online no problem at all.
Moorland Breeding Bird Map - Form (arcgis.com)
We have not used any reserved words for ESRI products, like shape_length, DELETE etc.
Not really sure what to do next on this, it works in the field very well, just this last hurdle to get over.
Thanks 😊
Matt
Solved! Go to Solution.
based on this example:
var code = $feature.codedValue;
var decodedValue = Decode(code, 1, 'Residential', 2, 'Commercial', 3, 'Mixed', 'Other');
________________________________________________________________________________________
On this line: breed_status = Decode($feature.Doing,
Try: breed_status = Decode(originalValue,
@MattSully - Are you able to share the arcade used?
It's good that you have narrowed it down to the arcade function being used.
Yes of course, @gis_KIWI4. I will document the variety of simple arcade functions below:
1) When surveyed
based on this example:
var code = $feature.codedValue;
var decodedValue = Decode(code, 1, 'Residential', 2, 'Commercial', 3, 'Mixed', 'Other');
________________________________________________________________________________________
On this line: breed_status = Decode($feature.Doing,
Try: breed_status = Decode(originalValue,