Número de ID del error |
BUG-000165572 |
Enviado | March 2, 2024 |
Última modificación | November 5, 2024 |
Relacionado con | ArcGIS Survey123 |
Versión encontrada | N/A |
Sistema operativo | N/A |
Versión de sistema operativo | N/A |
Estado | As Designed
Tras revisión realizada por el equipo de desarrollo, se ha determinado que este comportamiento es acorde con lo designado. Consulte los detalles en la sección Información adicional.
|
Información adicional
When querying attributes from a date field in a feature layer, the values are returned as UNIX timestamps. However, ArcGIS Survey123 web app only supports decimal date and time which means the dates must be converted.
It is recommended to use decimal date format, because then the XLSForm expressions works both in the field and web apps. The ArcGIS Survey123 web app ONLY supports decimal time. For example: date-time(int(${timestampqueried})div 86400000)
Refer the documentation https://doc.arcgis.com/en/survey123/desktop/create-surveys/decimaldatetime.htm for more information.
Solución alternativa
Convert dates queried from the feature layer (timestamps) to decimal date time.
e.g. date-time(int(${timestampqueried})div 86400000)
Pasos para reproducir