|
POST
|
Hi, The issue has been fixed, and the format for metadata start and end should work on the Survey123 website now. Please leave a comment if you have any problem with the fix. Thanks, Ruth
... View more
11-22-2020
06:43 PM
|
0
|
1
|
5401
|
|
POST
|
Hi Sam, Thanks a lot for the testing, the hotfix build will be released in mid-December. I will reply to this post, once the hotfix build is available on the production website. Thanks, Ruth
... View more
11-15-2020
10:01 PM
|
0
|
0
|
6122
|
|
POST
|
Hi, Thank you for raising the issue here! We have done some changes to the metadata types which include start and end, and it seems like the format support for them is not working. I will reply to this post with any update. If you remove the format for start_time and end_time, then the report can be generated without issue. I encourage you to contact Esri Support. Our Support team will assign an official bug number for your records. This number can be used to search for and subscribe to the bug on the Esri Support site. If the issue is reported by other customers it will be attached to the same bug report, which helps us assess the impact of the issue and prioritize it accordingly. Thanks, Ruth
... View more
11-13-2020
03:29 AM
|
1
|
3
|
5430
|
|
POST
|
Hi Sam, The bug BUG-000134972 has been fixed and available for testing on Survey123 BETA website (https://survey123beta.arcgis.com/). If it is possible could you please try our fix on the BETA website to see if that fix works for you? Thanks, Ruth
... View more
11-13-2020
02:31 AM
|
0
|
4
|
6161
|
|
POST
|
Hi Jürgen, You are right, normally the error msg contains more specific information; therefore, we will try to reproduce the issue and find out the cause, as well as why there is no error msg shown. If the issue occurs again, could you please reply to this post and paste a screenshot of the console and the network `add` request (in developer tool) which may contain more information. That will be really helpful for us to identify the issue. To log the issue, I encourage you to contact Esri Support. Our Support team will assign an official bug number for your records. This number can be used to search for and subscribe to the bug on the Esri Support site. If the issue is reported by other customers it will be attached to the same bug report, which helps us assess the impact of the issue and prioritize it accordingly. Thanks, Ruth
... View more
11-12-2020
09:21 PM
|
0
|
0
|
2660
|
|
POST
|
Hi, There is no existing function to do this, however, Survey123 does support the custom JS function. Here are some good resources: Blog: https://community.esri.com/t5/arcgis-survey123-blog/extending-survey123-smart-forms-with-custom-js-f... Doc: https://doc.arcgis.com/en/survey123/desktop/create-surveys/pulldatajavascript.htm (Please pay attention to the known limitations at the end of this doc) I have also attached a sample XLSform (Please change the feature layer url in the pulldata function) and a Javascript code (Please take the code and save it as .js file, then put the js. file into the scripts folder as described in the documentation). The following code can do simple overlap detection and returns the count of the existing polygons that are overlapping. function overlapDetection(geometry, token, featurelayer_url) {
// If there is no geometry input, output null
if (!geometry) {
return "Wait for input geometry.";
}
// If the survey is submitted in the webapp, convert the geometry to object
if (typeof(geometry) != "object") {
var geoArray = geometry.split(';');
geoArray.forEach(ArraytoAA);
var geoObject = {"rings": [geoArray]};
} else {
var geoObject = geometry;
}
var geoString = JSON.stringify(geoObject);
// Change the parameters in the query URL to work with different geometryType, spatialRel, etc.
// Ref: https://developers.arcgis.com/rest/services-reference/query-feature-service-layer-.htm
var url = featurelayer_url+"/query?where=1%3D1&geometry="+geoString+"&geometryType=esriGeometryPolygon&spatialRel=esriSpatialRelOverlaps&units=esriSRUnit_Meter&returnCountOnly=true&f=json";
if (token) {
url = url+"&token="+token;
}
var xhttp = new XMLHttpRequest();
xhttp.open("GET", url, false);
xhttp.send();
if (xhttp.status!==200) {
return (xhttp.status);
} else {
var responseJSON=JSON.parse(xhttp.responseText)
if (responseJSON.error) {
return JSON.stringify(responseJSON.error);
} else {
return JSON.stringify(responseJSON.count);
}
}
}
function ArraytoAA(item,index,array) {
var coord = item.split(' ').map(Number)
array[index] = coord;
} Thanks, Ruth
... View more
11-12-2020
08:05 PM
|
0
|
3
|
3700
|
|
POST
|
Hi Jürgen, Thanks for sharing here! I think this issue may occur due to the network issue or the server downtime. Could you please provide more information relates to this issue so that we can identify the cause of it? For example, how often do you see this kind of error? and how long does the error last, like a few hours or a few days? and it would be really helpful if you have a rough timeline of when it occurred recently. Thanks, Ruth
... View more
11-12-2020
12:54 AM
|
0
|
2
|
2694
|
|
POST
|
Hi Daniel, Thank you for sharing here! Could you please double-check the fieldworker view of your survey? If the "Enable editing" is disabled there, then the changes in the collaboration page will not be saved. Here is the detailed instruction: 1) GO to AGOL or your portal, 2) Search for your survey folder, 3) Find the fieldworker view, check this view settings. Here is a blog https://community.esri.com/t5/arcgis-survey123-blog/securing-data-in-public-surveys-survey123-web-designer/ba-p/898102 that explains the backend mechanism in depth which is worth reading. If this is not the case, please let me know, I will help you investigate further. Thanks a lot! Ruth
... View more
11-12-2020
12:09 AM
|
0
|
0
|
902
|
|
POST
|
Hi Martha, Thanks for the screenshot, the "This is a required question" is shown because the question is a required question. When the input does not meet the constraint, it also does not meet the required constraint, so the "This is a required question" which has a higher priority shows. One workaround method here, maybe you can set the required_mssage as well in the XLSform. Hope this works for you! Thanks, Ruth
... View more
11-07-2020
07:03 PM
|
0
|
0
|
2480
|
|
POST
|
Hi Martha, We will try to address this issue in the next few releases, and I will reply to this post with any updates. For the constraint message, did you also set the constraint_message in the XLSform? If yes, then I will need more information to identify the issue, a screenshot like the screenshot I posted above would be very helpful. Thanks, Ruth
... View more
11-06-2020
03:36 AM
|
0
|
2
|
2480
|
|
POST
|
Hi Chaim, Thanks for sharing! I tried to open a simple map question on iPhone 11 with mobile safari 13, but I was not able to reproduce the behavior. If it is possible could you please let us know the device and browser version that the issue occurred? Thanks, Ruth
... View more
11-06-2020
03:24 AM
|
0
|
0
|
1525
|
|
POST
|
Hi Michael, Is there any repeat in your survey? It sounds like you are encountering this existing salesforce issue: BUG-000130290: Relevant statement (relevant to an image question) d.. that the pulldata CSV does not work with repeats on the web app. I encourage you to contact Esri Support. Our Support team will attach your case to the same bug report, which helps us assess the impact of the issue and prioritize it accordingly. Thanks, Ruth
... View more
11-06-2020
02:59 AM
|
0
|
1
|
1132
|
|
POST
|
Hi Nikholai, Deleting the related records is supported by Survey123 edit mode. Could you please double-check the "what can submitters do?" on the collaborate page? If you didn't allow the submitters to delete the records, then the edit mode will return the error msg. If you have already enabled delete records and still see this error, please let me know, I will help you investigate further. Thanks, Ruth
... View more
11-05-2020
10:24 PM
|
0
|
3
|
6138
|
|
POST
|
Hi Oussama, Thanks for sharing. Is there any repeat inside repeat (nested repeat) in your survey? If yes, then the reason for the failure is that the edit mode does not support nested repeat at this time yet. If there is no nested repeat in your survey, and you still see the submission error, could you please share your XLSform with us? so that, we can help you identify the cause of the issue. Thanks, Ruth
... View more
11-05-2020
03:06 AM
|
0
|
0
|
2068
|
|
POST
|
Hi Martha, Thank you for sharing, and I will log a bug for the tiff file preview issue. If you want to avoid the .tiff submission, try adding regex(., '!.tiff$') in the constraint field. Then when a .tiff file is added, the constraint_message will show, and the submission will be prevented. Thanks, Ruth
... View more
11-05-2020
02:45 AM
|
1
|
2
|
2480
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 6 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|