Número de ID do Erro |
BUG-000165572 |
Enviado | March 2, 2024 |
Última Modificação | November 5, 2024 |
Aplica-se à | ArcGIS Survey123 |
Versão encontrada | N/A |
Sistema Operacional | N/A |
Versão do Sistema Operacional | N/A |
Status | As Designed
Após revisão pela equipe de desenvolvimento, foi determinado que esse comportamento é conforme projetado. Consulte a seção Informações Adicionais para obter detalhes.
|
Informações Adicionais
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.
Solução Provisória
Convert dates queried from the feature layer (timestamps) to decimal date time.
e.g. date-time(int(${timestampqueried})div 86400000)
Etapas para Reproduzir