|
BLOG
|
Hello @DataOfficer, The script in this blog is quite old and is intended for ArcMap the modules used by the script have been superseded by the ArcGIS API for Python. We have updated this script to use the ArcGIS API for python and the updated script is present in our Survey123-tools github repo. Thank you, Zach
... View more
09-03-2021
03:59 PM
|
2
|
0
|
9099
|
|
POST
|
Hello @Anonymous User, In testing on my end one field that seems to be causing the error is the Project Name field. For the bind::esri:fieldLength it is set to 30 but the value that was submitted in my test survey is "MedBow Springs/ WYNDD Survey 2021" which is 33 characters. Thank you, Zach
... View more
09-01-2021
10:24 PM
|
1
|
1
|
2804
|
|
POST
|
Hello @RSchaffner, If possible would you be able to share the survey to a group with ZSutherby_Survey123 added to it? I don't need access to the underlying data just access to the survey. With access to the survey I can compare the files with the published survey and the zip attached to identify any differences that may be causing the publish failure. Thank you, Zach
... View more
08-25-2021
11:42 AM
|
0
|
1
|
2180
|
|
POST
|
Hello @DataOfficer, I've tested on my end with the sample form structure from above and I am not able to reproduce the same behavior. If you publish a new test survey using the form structure above are you able to reproduce the same behavior? Thank you, Zach
... View more
08-25-2021
09:20 AM
|
0
|
1
|
2021
|
|
POST
|
Hello @kborst, If you would like users using the Survey123 field app to view other submissions you will need to enable the inbox in Survey123 Connect for the survey. Please use this link for reference regarding editing and viewing existing survey data: https://doc.arcgis.com/en/survey123/desktop/get-answers/editexistingdata.htm#ESRI_SECTION1_47C2CB8342244924B1D99EBB35EAFFFE Thank you, Zach
... View more
08-24-2021
04:07 PM
|
0
|
0
|
706
|
|
POST
|
Hello @LuisGarcia6, If possible may we ask for a diagram of your desired end goal? There is a workflow that comes to mind, but want to make sure it aligns with your use case. Thank you, Zach
... View more
08-17-2021
09:27 AM
|
0
|
0
|
957
|
|
POST
|
Hello @JuneAcosta, Using the Survey123 Web App JavaScript API there is a setOnFormSubmitter event that can be used in conjunction with a custom function that will close the window. Please use this link for more information on the Survey123 Web App JavaScript API: https://developers.arcgis.com/survey123/api-reference/web-app/#setOnFormSubmitter Thank you, Zach
... View more
08-16-2021
01:51 PM
|
0
|
0
|
1446
|
|
POST
|
Hello @PedroGabrielBuenoCesar, IOS tends to be more strict capitalization in file names and file extensions. In your XLSForm you have select_one_from_file municipios.csv whereas the name of the csv file attached is municipios.CSV. That difference in capitalization with the csv file extension is what is causing the issue in IOS. Changing the file extension to a lowercase csv to match what's in the XLSForm works in IOS. Thank you, Zach
... View more
08-16-2021
01:24 PM
|
1
|
0
|
1872
|
|
POST
|
Hello @MathieuBoonen, The syntax is a little off, given how the Onecall API returns it's JSON if you are looking for the days description the syntax would be pulldata("@json", ${weather_json},"daily[1].weather[0].description") This will return the weather description for tomorrow. If you are looking for other days you would change the index after daily. For example daily[0] would be today and daily[2] would be two days from now. It also looks like the Onecall API has an exclude parameter so if you are not interested in the minute forecast, hourly forecast, or alerts you can exclude them and make the response smaller. Thank you, Zach
... View more
08-04-2021
06:54 PM
|
1
|
1
|
4414
|
|
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
|
3960
|
|
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
|
4424
|
|
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: 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
|
9072
|
|
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
|
3179
|
|
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
|
9157
|
|
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
|
4299
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 05-22-2026 03:26 PM | |
| 1 | 02-27-2026 02:55 PM | |
| 6 | 12-17-2025 01:51 PM | |
| 1 | 11-04-2025 02:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|