Still having issues with calculated Arcade expressions working that worked in previous versions. Found a download to roll back my users to version 24.3.0 where things are still working, but frustrating having to work with field crews to show them how to roll back and disable auto updates.
Solved! Go to Solution.
Hey Chris! Sorry for the delay responding, seems like the whole internet has been buggy the last while so been tied up with my other workflows.
I think I have it narrowed down to the DomainCode() function, I wasn't providing the 'value' parameter, which is optional. I have a field in the form that was causing issues that logically derives the inputs of other fields in the same form by getting the values from a separate lookup to a table in my map. To filter the lookup table I need to get the domain code for the selected domain value in my 'Description' field so I was using this:
var code = DomainCode($feature, "Description")Which worked in the previous Field Maps versions.
I added the value parameter and Field Maps isn't crashing on my Galaxy S24+ when filling out the form anymore:
var code = DomainCode($feature, "Description", $feature.Description)
Thanks kindly!
Hi @TylerBoychuk ,
Sorry you're still seeing issues. Do you have an active support case for this? What is the arcade expression that is failing?
Chris
Hey Chris! Sorry for the delay responding, seems like the whole internet has been buggy the last while so been tied up with my other workflows.
I think I have it narrowed down to the DomainCode() function, I wasn't providing the 'value' parameter, which is optional. I have a field in the form that was causing issues that logically derives the inputs of other fields in the same form by getting the values from a separate lookup to a table in my map. To filter the lookup table I need to get the domain code for the selected domain value in my 'Description' field so I was using this:
var code = DomainCode($feature, "Description")Which worked in the previous Field Maps versions.
I added the value parameter and Field Maps isn't crashing on my Galaxy S24+ when filling out the form anymore:
var code = DomainCode($feature, "Description", $feature.Description)
Thanks kindly!