不具合 ID 番号 |
BUG-000165572 |
送信されました | March 2, 2024 |
最終更新日 | November 5, 2024 |
適用対象 | ArcGIS Survey123 |
見つかったバージョン | N/A |
オペレーティング システム | N/A |
オペレーティング システムのバージョン | N/A |
ステータス | As Designed
開発チームによる確認後に、この動作が設計どおりであると判断されました。 詳細については、「参考情報」セクションをご参照ください。
|
参考情報
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.
対処法
Convert dates queried from the feature layer (timestamps) to decimal date time.
e.g. date-time(int(${timestampqueried})div 86400000)
再現の手順