|
POST
|
Hello @vocono1953, Try placing format-date(today(), '%Y/%m/%d') in the calculate column of the XLSForm. Please see this documentation for more information on the format-date function.
... View more
11-15-2022
03:44 PM
|
0
|
1
|
3307
|
|
POST
|
Hello @Gisbert61, It is not currently possible to set a custom marker symbol appearance for the Inbox map. We have ENH-000123894 logged to support this functionality in the future.
... View more
11-15-2022
09:36 AM
|
2
|
0
|
2531
|
|
POST
|
Hello @郁儒林, For a registered feature service you will need to run the Upgrade Attachments geoprocessing tool on the attachment table so that it has keywords enabled. When keywords are enabled on the attachment table new attachments will show in the Inbox. Existing attachments will need to have their keyword attribute populated. Please see this Python notebook for a way to automate that workflow.
... View more
11-14-2022
05:20 PM
|
0
|
0
|
2473
|
|
POST
|
Hello @MikeDoyle2, Since the survey is pointing to a hosted feature service view, Survey123 Connect is not able to add the field to the view layer. You will need to add the field to the views parent feature service and ensure it propagates to the view layer so that the schema will match your XLSForm.
... View more
11-08-2022
04:48 PM
|
1
|
2
|
7311
|
|
POST
|
Hello @lmelendez_ADMIN, The difference is likely in the question type, you may have selected integer or decimal as the question type which will only work with integer or decimal fields in the feature service. Looking at the USA 117th Congressional Districts feature service the CDFIPS field is a string so the question will need to be a text question.
... View more
11-08-2022
02:31 PM
|
1
|
1
|
1165
|
|
POST
|
Hello @MikeDoyle2, The issue is with the additional languages having a capitol L for label in the column name. If you switch them to lowercase label for the column headers they should work.
... View more
11-08-2022
02:26 PM
|
2
|
0
|
1406
|
|
POST
|
Hello @Bryan_Wade, Survey123 needs the globalId of the records that is trying to be edited to be passed along via a URL parameter, when using Experience Builder that is done through selecting the layer or view from the Map widget. Please see this documentation link for more information.
... View more
11-07-2022
03:11 PM
|
0
|
0
|
908
|
|
POST
|
Hello @CPG, Based on the context I think you may need a JavaScript function to do totaling based on unique species but I'll start with another option that doesn't require JavaScript but I don't think it would work in your scenario. I've seen folks get really creative with HTML in Survey123 to display a table that summarizes the count of species for the field personnel to quickly observe what's been collected in the repeat. To do that in the repeat you would have a calculate question that sets up the row for the table something like: concat('<tr><td>',${scientific_name},'</td><td>',${count},'</td><td>',${groundcover},'</td></tr>') Then outside the repeat you would use the join() function to build the table from each row, something like: concat('<table border="1" cellspacing="0" cellpadding="5"><tr><th>Species</th><th>Count</th><th>Ground Cover</th></tr>',join('',${calculation_in_repeat}),'</table>') In this scenario there is no logic to tease out duplicate species and append their count to a previous entry which is where the JavaScript function comes in. Using a JavaScript function you can process repeat data and identify if a species has already been collected and revise the count in an object. From there you can build the rows of the table in the JS function, return that and use that in your HTML table.
... View more
11-04-2022
05:48 PM
|
1
|
0
|
2374
|
|
POST
|
Hello @GaryRodriguez, Is the behavior consistently happening (every form update) with one or more surveys, or does the error periodically happen on form update? If possible may I ask for a copy of the XLSForm that's encountering the behavior for testing on our end? Feel free to send it to [email protected] and I can take a look into it.
... View more
11-04-2022
05:19 PM
|
0
|
0
|
2800
|
|
POST
|
Hello @JackBien, One suggestion would be to check that the token for your ArcGIS organization connection hasn't expired. In Power Automate in the panel on the left hand side select the drop down for "Data" and select "Connections". For your Survey123 connection to your ArcGIS organization select the three horizontal dots to the left of the Modified column and select "Switch account". If you reauthenticate with your ArcGIS organization does that resolve the error?
... View more
11-04-2022
01:47 PM
|
0
|
1
|
1381
|
|
POST
|
Hello @lmotta_ibama, Survey123 doesn't have a property to extract users groups, one option would be to use a custom JavaScript function to call the User Self REST endpoint which will return the groups the user belongs to. If your survey is planned to be shared with folks outside your organization another option would be post process the data after it's submitted using the ArcGIS API for Python to identify what groups the user belongs to and amend the record.
... View more
11-03-2022
02:48 PM
|
0
|
1
|
2075
|
|
POST
|
Hello @ksmoreno, You would need an ArcGIS Enterprise organization, the Oracle database Geodatabase enabled, and registered with your ArcGIS Enterprise organization. From there you can publish your data as a feature service to your ArcGIS Enterprise organization and point your survey to that feature service. In this scenario when you submit a survey from Survey123 the data will be sent directly back to your Oracle database. As for populating answers based on the data from the Oracle database assuming the same configuration as above you can enable the Inbox on your Survey123 survey and will allow the ability to edit the existing data in the database. If you don't want to edit the existing data but want the same data in a new table/layer you can publish your data as a feature class like before but still keep your Survey123 survey pointing to a different feature service. From there with our 3.16 release of Survey123 we released a feature called pulldata(@layer) that let's you query data from another feature service to pull into your survey.
... View more
11-03-2022
02:37 PM
|
1
|
3
|
2830
|
|
POST
|
Hello @MarlaJohnson, In the Outbox if you select the red icon a pop up should appear, does that pop up have any additional error messages? I would suggest reaching out to Esri Technical Support to further troubleshoot the behavior, a few things that will help in debugging are: - Please enable diagnostic logging in the Survey123 field app and pass them along for analysis. - What type of authentication is your ArcGIS Enterprise organization configured with? (IWA, built in, SAML, etc) - Is this happening only for 1 user or all users submitting this survey? - What version of Survey123 Connect was the survey published with? - If using the latest 3.16.105 version of Survey123 Connect please double check that all fields in the XLSForm match the fields in the feature service.
... View more
11-01-2022
05:20 PM
|
0
|
1
|
1116
|
|
POST
|
Hello @JTH, Did you happen to change the name of the begin repeat question in the XLSForm? If so that would lead to Survey123 not being able to find the existing table.
... View more
10-28-2022
04:05 PM
|
0
|
1
|
1613
|
|
POST
|
Hello @RogerAsbury, One option would be to use the new pulldata @layer functionality we just implemented with our 3.16 release. Assuming you have a previous question that requests for the service area you can use pulldata @layer to do a point in polygon lookup and verify that the location set in the geopoint is identical to the service area selected. That way your constraint would just need to be ${questionA}=${calculationA}. Please see this survey for a live example: https://arcg.is/1braCn If you select a state from the drop down list a geopoint question will then become relevant, if your geopoint location doesn't reside in the state you selected then a constraint will prevent submission, otherwise if you select the state your geopoint resides in you can submit the survey. Source XLSForm is attached below.
... View more
10-28-2022
04:03 PM
|
1
|
1
|
10696
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 11-04-2025 02:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-16-2026
04:41 PM
|