|
POST
|
Hello @MariamJamilah, This issue may be related to BUG-000136846 as the USA Shrot-Term Weather Warnings feature service is publicly available. The defect was closed as the clone_items() method requires admin access to the feature service in order to read the feature service's definition. Since your account don't have admin access to the feature service that is likely why the error is being returned. Thank you, Zach
... View more
08-04-2021
03:48 PM
|
0
|
3
|
4091
|
|
POST
|
Hello @MathieuBoonen, If you are looking for the description from the JSON response you would need to use pulldata("@json", ${weather_json},"weather[0].description") This is because the weather name has an Object nested in an Array. That is why 0 is needed to extract item with index of 0, and the .description is needed to extract the property value from the description property. Please see the following W3 schools documentation links for more information on JSON Objects, Objects in JavaScript, and Arrays in Javascript https://www.w3schools.com/js/js_json.asp https://www.w3schools.com/js/js_objects.asp https://www.w3schools.com/js/js_arrays.asp Thank you, Zach
... View more
08-04-2021
02:57 PM
|
2
|
3
|
4504
|
|
BLOG
|
Hey @gvanderwaal, Thank you for reaching out! Survey123 uses keywords to associate what attachment goes with what image question. One thing to confirm is your ArcGIS Enterprise organization will need to be at version 10.8.1 or later as pre-10.8.1 organizations don't support attachment keywords. If your Enterprise organization is 10.8.1 or later when the data was cloned into the ArcGIS Data Store it may not have brought over the keywords. You can check if the attachment schema has keywords by navigating to the REST endpoint of the feature service in your Ent org, navigate to the layer, append any object ID that you know has attachments, and append /attachments to the URL. It will look something like https://<FQDN>/<webAdaptor>/ArcGIS/rest/services/<serviceName>/FeatureServer/0/<anyOID>/attachments. The page should look like this: ZacharySutherby_1-1627682181693.png If that Keywords attribute is in your attachment tables schema (like in the photo above) and the value is empty we have a notebook that you can use to automate the process of updating each attachment with their respective keyword. Luckily from the image you shared it looks like the keyword is in the name of the image (in your case image1) and the notebook can extract that and use the name of the image to determine the keyword. If that Keywords attribute is not in your attachment tables schema (it's missing on the attachment infos page) please download your feature service as a file geodatabase and open the data in ArcGIS Pro. There is a Geoprocessing tool called Upgrade Attachments in Pro that you can use to enable attachment keywords for your attachment table. When the tool finishes please overwrite your feature service and then run the notebook from above to update the attachment keywords. Please let me know if you would like to schedule a call to discuss this and I would be happy to help out! Thank you, Zach
... View more
07-30-2021
02:56 PM
|
2
|
0
|
9252
|
|
POST
|
Hey @ShawnHarris_CAR, Thank you for reaching out! If possible would I be able to obtain a copy of the esriinfo folder from one of the devices observing the behavior? This folder will be in /Users/username/ArcGIS/My Surveys/<survey Item ID>/esriinfo. What I'm looking for in that esriinfo folder is a gpkg file which will contain your choice list. I'm going to see if two tables may have been created in that file. Please feel fee to email the esriinfo folder if placing it on Esri Community is not preferable my email is [email protected]. Also FYI please check out our deprecation notes for Survey123. Thank you, Zach
... View more
07-30-2021
11:25 AM
|
0
|
1
|
3265
|
|
BLOG
|
The issue with cloning between ArcGIS Online and Enterprise and vice versa using surveys created in the web has been resolved in the notebook present in the GitHub repo. Please use the latest version of the notebook in the Survey123-tools repo to work around the issue.
... View more
07-23-2021
10:43 AM
|
1
|
0
|
9337
|
|
POST
|
Hello @KatherinePadilla, I don't see an official Esri Support BUG logged for the issue above. For your workflow are you seeing the issue when saving surveys to Drafts, or in general you see the issue? If possible would I be able to obtain a copy of the XLSForm and the steps to reproduce the behavior to investigate the behavior? Thank you, Zach
... View more
07-19-2021
04:22 PM
|
0
|
2
|
4404
|
|
POST
|
Hello @ZGutknecht, Thank you for confirming! Unfortunately Survey123 only supports using locators to search in the map. I've created an issue internally to enhance the map capabilities to use the feature/table search configured in a linked web map. Please feel free to log an idea in the ArcGIS Ideas page and/or log a case with Esri Technical Support and they will be able to log an official Enhancement to support the workflow. Thank you, Zach
... View more
07-16-2021
01:57 PM
|
0
|
0
|
781
|
|
POST
|
Hello @SarahPC, I would suggest reaching out to Esri Technical Support and they will be able to help troubleshoot the issue to narrow down what's happening. Survey123 sends a queryRelatedRecords REST request when accessing the related records in the inbox. I'm thinking the error is coming from the server side. Sending the request outside of Survey123 would be able to confirm if that's the case. Has this issue started recently? Has the inbox query worked in the past and this behavior came up recently, or has it never worked? Thank you, Zach
... View more
07-15-2021
02:53 PM
|
0
|
1
|
1341
|
|
POST
|
Hello @MichelleTanner, I had just tested with some basic data and was not able to reproduce the same behavior. The syntax should be no different you would just specify the question name with a dollar sign and curly brackets like a normal select_one question. On the data tab in the Survey123 website do you see data for your select_one_from_file questions in the table? Thank you, Zach
... View more
07-12-2021
05:57 PM
|
0
|
0
|
1415
|
|
POST
|
Hello @JimW, If you are still encountering this behavior would I be able to obtain the XLSform that was created when creating the survey? Thank you, Zach
... View more
07-12-2021
05:16 PM
|
0
|
0
|
1049
|
|
POST
|
Hello @ZGutknecht, If possible would I be able to obtain a little bit more information on the full use case? Are you looking to search based on a layer within the web map that is linked to your survey? Thank you, Zach
... View more
07-12-2021
05:12 PM
|
0
|
2
|
807
|
|
POST
|
Hello @KerryKang, When you are querying a feature service / layer you can specify if you want to return the geometry or not. When you send the query request to obtain the overlapping parcel polygon's PID you can set returnGeometry to true which will return the vertices for the polygon. Thank you, Zach
... View more
07-06-2021
02:55 PM
|
0
|
0
|
817
|
|
POST
|
Hello @NatashaDakouri-Hild, To edit existing records you will need to use the Inbox in Survey123. Enabling the inbox in Survey123 Connect and republishing your survey will allow you to query existing records from the feature service and edit their attributes. Please use these links for reference regarding the workflow: https://doc.arcgis.com/en/survey123/desktop/create-surveys/prepareforediting.htm https://doc.arcgis.com/en/survey123/desktop/get-answers/editexistingdata.htm https://www.esri.com/videos/watch?videoid=aGTPIzTtbSk&title=survey123-for-arcgis-editing-existing-data-with-survey123-for-arcgis Thank you, Zach
... View more
07-06-2021
09:47 AM
|
0
|
0
|
1319
|
|
POST
|
Hello @Anonymous User, Please check out this Esri Community blog as the ArcGIS API for Python has a method for cloning items between ArcGIS Organizations. This method works really well with Survey123 Surveys. As for changing the owner of the survey are you performing this workflow from the Survey123 website? If so are you an administrator in the organization, and does the person you are transferring the survey to have the appropriate privileges to own content? You could also integrate the ownership transfer in with the Python notebook the Python API team has a good resource that demonstrates the workflow of moving content from one user to another. Thank you, Zach
... View more
07-06-2021
09:30 AM
|
1
|
1
|
2490
|
|
POST
|
Hello @JulianHeilman, You can use an if statement with the selected() function in the repeat to check if a specific choice has been selected and return 1 if it was selected or return nothing if it wasn't selected. You can then use the count() function outside of the repeat to count the number of times 1 was returned from the choice calculation. I've attached a sample XLSForm that demonstrates the workflow. Here is another Esri Community thread that may also be helpful: https://community.esri.com/t5/arcgis-survey123-questions/survey123-count-filtered-by-selected-choice/m-p/862855
... View more
07-02-2021
08:38 AM
|
0
|
0
|
1954
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 06-04-2026 03:20 PM | |
| 1 | 05-22-2026 03:26 PM | |
| 1 | 02-27-2026 02:55 PM | |
| 6 | 12-17-2025 01:51 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|