|
POST
|
Hello @MFazio, To add water quality samples (related records) to existing sample sites (parent records) you'll need to add the parent GUID field/question to the XLSForm and then populate it with an existing global ID from a record in the sample site table to associate the new water quality sample record with the sample site. Check out step 7 from this Esri Support article for reference. From there you'll need to use the field:<fieldname> URL parameter to populate the parent GUID question in the survey passing it from the sample sites table.
... View more
04-21-2023
03:51 PM
|
0
|
2
|
4731
|
|
POST
|
Hello @MFazio, Would you be able to provide a screen capture of the submission_url set in the XLSForm? When you say you set the submission_url to the "Feature Class address that is located on the feature service overview tab" it sounds like you set it to the URL for the Item Details page (https://<org>.maps.arcgis.com/home/item.html?id=<itemID>) which would be the incorrect URL, the submission_url should be the content root endpoint (https://www.arcgis.com/sharing/rest/content/items/<itemID>). Since you have the Form ID set to the related table name, to confirm you don't have a begin repeat or end repeat in your XLSForm? Please see these documentation links for more information on using Survey123 with existing feature services: https://doc.arcgis.com/en/survey123/desktop/create-surveys/survey123withexistingfeatureservices.htm https://support.esri.com/en-us/knowledge-base/how-to-populate-a-related-table-from-an-arcgis-survey12-000021198
... View more
04-21-2023
08:57 AM
|
0
|
4
|
4747
|
|
POST
|
Hello @DerekPhyn, This issue came from our 3.17 April update that released earlier this week. The issue has been logged as BUG-000157639 and is planned to be addressed in a hotfix next week. The fix is currently available on https://survey123beta.arcgis.com.
... View more
04-21-2023
08:44 AM
|
0
|
1
|
1640
|
|
POST
|
Hello @FranciscoAllard, If you select Publish on the bottom right then select Modify schema that will show you the schema of your form. Are there 2 questions in that UI that both have the name 'field_9_0'? ZacharySutherby_0-1682089925580.png
... View more
04-21-2023
08:12 AM
|
1
|
0
|
2682
|
|
POST
|
Hello @Anonymous User, You won't be able to delete a field from a view layer, you will need to delete it from the parent feature service that the _results & _form views point to: ZacharySutherby_0-1682032744922.png
... View more
04-20-2023
04:19 PM
|
1
|
0
|
1578
|
|
POST
|
Hello @kmsmikrud, Unfortunately, geotrace/geoshape questions don't support calculations in the web app. This is logged as ENH-000141099, please feel free to reach out to Esri Technical Support to be attached to the Enhancement and follow updates on the feature.
... View more
04-19-2023
03:00 PM
|
0
|
1
|
2551
|
|
POST
|
Hello @rsun_TQB, This has been logged as BUG-000157639.
... View more
04-19-2023
11:02 AM
|
1
|
0
|
4710
|
|
POST
|
Hello @townofmountainvillage, Thank you for reporting this! The issue isn't so much with the selected-at() function it's more how the Survey123 website handles multiple choice questions which has a downstream impact on the selected-at() function. Survey123 stores multiple choice questions as a comma separated list ex. (choice1,choice3,choice5). What Survey123 Connect and the field app do is append the selected response to the end of the list maintaining the order in which the choices were selected (this is why selected-at() works well in this environment). What the Survey123 website is doing is instead of inserting the selected choice at the end of the list it's inserting it in the choice's index in the choice list (this is why selected-at()) isn't working as expected in this environment). I've logged an internal issue to correct this behavior in the website, please feel free to reach out to Esri Technical Support to log an Enhancement as well to track progress on the issue. Based on the brief snippet of your survey in the issue description as a workaround for the time being I would suggest checking out the rank question type to see if that would work in your use case as that maintains choice order in the web app allowing selected-at() to function as expected.
... View more
04-19-2023
10:10 AM
|
2
|
1
|
2817
|
|
POST
|
Hello @SamLee__MES_, You can set method=vertex in the body::esri:style for the geoshape question. This will switch the input method to dropping vertices instead of allowing sketch. Unfortunately, the capture methods are mutually exclusive and if the capture method is set to sketch both standard sketch and smart sketch will be enabled. Please see Capture methods for more information.
... View more
04-19-2023
10:01 AM
|
0
|
0
|
831
|
|
POST
|
Hello @rsun_TQB, We believe this issue has popped up with our 3.17 April update and are currently investigating the behavior. Please feel free to reach out to Esri Technical Support and attach yourself to the defect so that you can track progress on the issue.
... View more
04-19-2023
09:46 AM
|
1
|
1
|
4734
|
|
POST
|
Hello @NatalieSlayden, You can use pulldata("@geopoint", ${location}, "DMS") to return the geopoint as degrees, minutes, and seconds. This function returns a JSON object so that can be parsed in two ways: You can extract specific attributes using the following syntax ex. pulldata("@geopoint", ${location}, "DMS.latitudeText") returns "39°57'36.3\"N" for example. You can also use pulldata("@json") if you want to separate the calculations. Please see the Coordinate format section of the Geopoints documentation for more information.
... View more
04-19-2023
09:30 AM
|
0
|
0
|
1548
|
|
POST
|
Hello @migforst6, There are two ways you could go about this, the first if you truly don't want the Inbox enabled for the fieldworkers you will need two surveys that point to the same feature service. One survey where the Inbox is enabled (admin form) and another where the Inbox is disabled (fieldworker form). Enabling the Inbox is an all or nothing setting for the form there is no way to conditionally enable it for select users. Another workflow would be to enable the Inbox (all users will see the Inbox), but set a "Where" expression so that records will only display in certain users Inboxes. For example, you can add a field in the feature service called "assigned_to" and in that field populate the username of the admin you want to edit that feature. Then in Connect for the Where expression set it to assigned_to=${username}, this will make it so that any user that has their username in the assigned_to field will see those records in their Inbox and any user that has no records with their username in the assigned_to field won't see anything in the Inbox.
... View more
04-13-2023
02:52 PM
|
3
|
3
|
2529
|
|
POST
|
Hello @dwold, In the media::image column you don't need to enter the full file directory for the image, just the name (with extension) of the image (case sensitive) as it is in the Media folder. ex. CLSS_Logo.jpeg The Survey123 website is not able to access C:/users/ABCD/ArcGIS/My Survey Designs.... as that is local to your machine.
... View more
04-11-2023
06:35 PM
|
1
|
1
|
1051
|
|
POST
|
Hello @mattkramer, It may be best to reach out to Esri Technical Support to further troubleshoot the behavior. A couple of things I would suggest checking are: - Try creating the flow from scratch, if you used one of the templates with the Survey123 connector we have a few known issues with the templates in Power Automate. - If the same behavior occurs when creating the flow from scratch it would be helpful to capture the web traffic when the survey is selected. When the survey is selected a `listDynamicProperties` request should be made that returns the information used in the dynamic content. This request may be failing and in the response of the request there may be an error message as to why it failed.
... View more
04-11-2023
03:02 PM
|
0
|
3
|
6450
|
|
POST
|
Hello @ChristopherCounsell, You can make your geometry question readonly when the survey is in edit mode by setting pulldata("@property", 'mode') = 'edit' in the readonly column.
... View more
04-11-2023
02:53 PM
|
1
|
3
|
2490
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-22-2026 11:53 AM | |
| 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 |
yesterday
|