|
BLOG
|
Thanks Amy! Our initial thinking is that we will enable Webhooks for private surveys only. Having said this, I would like to learn more about your specific use case. I will email you for details.
... View more
03-06-2018
09:58 AM
|
1
|
0
|
18203
|
|
POST
|
Hi Shane. It is not possible to make the map bigger in the form as you describe. However, here are some ideas: Inbox: You could use the Inbox to present the field user a list of the places that need to be visited for the day. When using the Inbox, the filed user can choose to display destinations either using a list (like a to-do list), or a full-screen map. When configuring the Inbox you can use predefined queries to better control which destinations will be shown. Our 'Prepare for editing existing survey data' help topic describes how to configure the Inbox in more detail. Navigator: With or without the Inbox, you can include dynamic links in your form that launch Navigator for ArcGIS. This is essentially the same technique that you are already using to launch Google Maps, but the target app is different. The Navigator Custom URL Scheme is described here.
... View more
03-05-2018
09:06 AM
|
1
|
1
|
1442
|
|
BLOG
|
----------------------------------------------------Note start------------------------------------------------------------------------------------------ The original content of this post is obsolete. All functionality described is now generally available as described in this video: ----------------------------------------------------Note end------------------------------------------------------------------------------------------ We are happy to announce that Survey123 will introduce support for Webhooks shortly. If you are not familiar with webhooks, think that you will be able to integrate Survey123 workflows with Micosoft 365, Google Sheets, Box, Evernote, GMail, SMS (Simple Message System), Apple Push Notifications, Salesforce and hundreds of cloud services more! What is a Webhook? The concept of a Webhook is simple. A WebHook is an HTTP/s callback: an HTTP/s POST that occurs when something happens; a simple event-notification via HTTP/s POST. The beauty of webhooks is that they are a commonly accepted pattern by many applications out there, so a whole ecosystem of different providers allows you to work with webhooks and automate processes involving things such as Microsoft 365, Evernote, Google Sheets, SalesForce...and now Survey123. What can I do with Webhooks and Survey123? As you will find soon, many different things, but I will give you a simple scenario: Imagine you want to send an email to someone when a high priority incident is reported through a particular Survey123 form. Imagine too, that if the incident is low priority then you want the incident to be logged in a Google Sheets spreadsheet. By configuring a webhook with Survey123, you can trigger a flow that orchestrates Gmail and Google Sheets to do what I just described. The flow could look something like this: The flow above was built using Integromat. Integromat is a cloud application that helps you visually orchestrate different cloud services. Integromat supports initiating these flows, or scenarios as they call them, with a webhook triggered by Survey123. How can I do this myself? I am slow typing, so I recorded a step by step video so you can get a hang of it. You will be able to do this by using the Early Adopter version of Survey123. Do I need to use Integromat? Not necessarily. Integromat is one of many possible solutions for using webhooks and Survey123. Other solutions include Zapier, Microsoft Flow, Tray.io, IFTT etc. You can in fact trigger a webhook that calls your own custom developed web service, an ArcGIS geoprocessing service, an FME service etc... Does Esri plan to have connectors for Zapier, Microsoft Flow etc? Very likely, but we are still working out what is the specific set of connectors we will create. We want to use this Early Adopter Program to figure out which connectors you would like. For now, you can use the generic webhook connector! To what Survey123 event can I associate a webhook? For now, only to the submit operation in a form (Web Form or Survey123 field app). If you have use cases for other triggers, let us know. Updated June 17, 2018: Are there any restrictions to the use of webhooks using Survey123? Yes: Webhooks will only be triggered if the end-user is logged in into the Survey123 field app or Survey123 Web Form. Survey123 webhooks will not be triggered if the form is shared publicly and the user submitting the form is not logged-in. When is this functionality planned to be made available? We are targeting version 3.0, which will release around July 2018. Our Survey123 Early Adopter Program now lets you experiment with this feature. We are looking for your feedback through the Early Adopter Program!
... View more
03-05-2018
12:44 AM
|
31
|
60
|
37587
|
|
POST
|
Hi. To move work orders from AS400 into ArcGIS, I would suggest you look into Workforce for ArcGIS. Essentially, you will need to take your AS400 CSV and append the workorders into the Worforce for ArcGIS assignments feature layer. This can be done, for example, programmatically using a Python script or with FME (from SAFE software). Workforce and Survey123 can be nicely integrated, so the appropriate form can be launched when the Worforce user is working on the assignment.
... View more
02-27-2018
02:46 PM
|
1
|
1
|
1131
|
|
POST
|
Hi, I think you will want to use a combination of thing here. You can use something like this to hide a note when no selection has been made in a select_one: string-length(${village})>0 Then you can use the pulldata() function in the calculation column to populate the note with a lookup. pulldata("villagesCSV","staffname","village",${village}) To illustrate this, I am attaching to this response a couple of files so you can see how things work. Import the Species.xlsx file into Survey123 Connect. Create New Survey/From File Copy the speciesCSV.csv file into the media folder of your survey's directory Select a bird species name from the list and a note will show its scientific name Birds....Villages...the same thing...
... View more
02-25-2018
11:27 AM
|
0
|
0
|
2102
|
|
POST
|
Hi, the Survey123 field app disables certain functionality when you are disconnected from the network. While disconnected you will not be able to login into your portal, submit surveys or download basemap tiles that have been configured for use while online. All the operations above require your device to be connected to the network because otherwise the app cannot connect to your portal (against one can login, download and submit surveys). Note that an internet connection is not a requisite: you could be connected via WIFI to your internal network (intranet) and perform all the operations above. The behavior I describe is not unique to 2.7. All versions of Survey123 will work the same way. The issue you may be running into is that you uninstalled a version of Survey123 in your device to install Survey123 2.7 from the Early Adopters Program. At that point you probably disconnected the device without having done a first login to download surveys. This meant that the next time you open Survey123 while disconnected you could not do anything... because you had no downloaded surveys and you could not login to download surveys. This is not unique to 2.7, it is just how things are supposed to work. Try the following: Connect your device to the network (intranet is fine if you are working with ArcGIS Enterprise) Setup the URL of your portal if working against Enterprise. Login Download surveys Go offline Capture data Once you connect again, submit data normally I hope this helps.
... View more
02-25-2018
10:44 AM
|
0
|
0
|
2227
|
|
POST
|
Hi, I have attached below a Jupyter Notebook file with some code you can use. The Notebook looks something like this. You will want to change the ID of your survey's featureLayer item, the output path and username... If your attachments are in a related table, make sure you adjust the layer index in myFLItem.layers[0] accordingly. Otherwise the script assumes that your attachments are in the first layer in your feature service. If you want to take this to the next level I recommend this Python script developer-support/python/general-python/download-attachments at master · Esri/developer-support · GitHub published by Michael Kelly
... View more
02-23-2018
08:57 PM
|
1
|
1
|
3083
|
|
POST
|
Hi Maneesh, the link can be broken down as follows: https://survey123.arcgis.com/share This bit is always the same /97795a222f98497581a6ec71155b0d13 This part indicates what survey specifically must be open. This long string represents a unique ID for your survey in ArcGIS. The id is automatically generated by Survey123 and you have no control over it. You need to replace this bit with the unique ID of your survey ?open=native This part is optional and indicates that your survey must be open by the Survey123 mobile app. If the app is not installed, the link will fail to open. If this bit is not included in the URL, then the survey will open within a web browser. &field:stationid=31236¢er=38.90774,-77.071652 These parameters are ALSO optional. You do not need them unless you want to prepopulate questions in the survey or center the map at a particular location. You can learn more about these parameters here https://community.esri.com/groups/survey123/blog/2016/07/30/understanding-survey123s-custom-url-scheme From a practical perspective, you should get the link from the Collaborate page in the survey123 website. That is the easiest and more reliable way to get the link. Controlling the sharing through the Collaborate tab is also the safest way to ensure that both your Form and corresponding Hosted Layer View are shared appropriately. More details here: Share survey—Survey123 for ArcGIS | ArcGIS Thanks.
... View more
02-23-2018
01:11 AM
|
2
|
0
|
4814
|
|
BLOG
|
Hi Paul. To have access to our Beta, you need to go into the Survey123 for ArcGIS Early Adopter Program. Once in the Survey123 Early Adopter Program site, you will find a Forum where you can post your request to be invited to download the latest build from Test Flight. You must request access to Test Flight through the Forum. Just for clarity, all features illustrated in the blog post above where released in April 26, 2017. The current build in the Early Adopter Program are for 2.7 which includes other features on the works such as GeoSearch, Web Hook Integration and others.
... View more
02-20-2018
09:03 PM
|
0
|
0
|
5777
|
|
POST
|
Did you try populating the repeat_count column in the XLSForm survey worksheet? You can set its value to a number. For example 5, or ${yourIntegerQuestionName} More info about repeat_count here: Repeats—Survey123 for ArcGIS | ArcGIS
... View more
02-20-2018
09:53 AM
|
1
|
1
|
1041
|
|
POST
|
An initial implementation of GeoSearch in the Survey123 field app is now available for testing through our Survey123 Early Adopter Program. Looking forward for your feedback.
... View more
02-14-2018
01:05 PM
|
1
|
0
|
1432
|
|
POST
|
Hi, if the requirement is for people to use your surveys without having an ArcGIS login, then your only choice will be to share your survey publicly. There are some details about this here: https://community.esri.com/groups/survey123/blog/2016/11/10/getting-started-with-public-surveys Now, making a survey public does not mean that people will automatically discover all your surveys. Not at least from the Survey123 field app, from which they will only be able to open surveys for which their URL is well known. Similarly, if people open your public survey from a web browser they do not necessarily will get to know other public surveys you may have. For people to discover your Public Surveys they must explicitly go into ArcGIS.com and search for them.
... View more
02-14-2018
01:01 PM
|
0
|
0
|
781
|
|
POST
|
Referencing our blog post https://community.esri.com/groups/survey123/blog/2017/11/25/creating-ticket-numbers-in-survey123-for-arcgis in case it gives you some ideas to go about creating unique sample IDs.
... View more
02-14-2018
12:56 PM
|
2
|
7
|
3615
|
|
IDEA
|
More on this: https://community.esri.com/groups/survey123/blog/2015/11/10/downloading-data-captured-with-survey123-for-arcgis
... View more
02-13-2018
06:05 PM
|
2
|
1
|
9017
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-03-2021 09:03 AM | |
| 1 | 04-01-2022 12:48 PM | |
| 1 | 03-22-2022 08:44 AM | |
| 1 | 08-26-2021 02:43 PM | |
| 1 | 10-30-2019 10:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
4 weeks ago
|