|
POST
|
Its actually not a S123 issue but the way the rest endpoint posts to the database using Apply Edits at the feature service level. From my testing it does two transactions, an insert and then an update. Any executions fail in the trigger because they are called on the insert but the update has not occurred yet. Hence the warning. I have not found a work around, but that is whats happening. Additionally it is by design so basically not an ESRI problem. I'm not sure how Collector posts but this is not an issue with Collector.
... View more
11-21-2019
02:25 PM
|
0
|
2
|
2010
|
|
POST
|
Prior to ArcGIS Pro each map used for a service mxd was saved separately. Now that we are able to have multiple maps in one Pro project how many maps can Pro handle without effecting performance? Are unopened maps in pro idle or do they take up resources? Thanks.
... View more
11-21-2019
07:19 AM
|
0
|
4
|
2669
|
|
POST
|
I am trying to return just the globalid of the top record as set the globalID as the variable. It works when I hard code a globalid. The below works, but it obviously does not use the variables. var valves = FeatureSetbyName($datastore, "UTILITIES.DBO.uti_wdSystemValve",['globalid'])
var valve = first(filter(valves, "VALVE_ID = '" + $feature.valveid + "'"))
var date_ = $feature.exercisedate
return {
'edit': [{
'className': 'UTILITIES.DBO.uti_wdSystemValve',
'updates': [{
'globalID': '{DE10ED35-B0A6-4E0B-86E7-0012405029F8}',
'attributes': {
'lastexercised': date_
}
}]
}]
}
... View more
11-18-2019
02:22 PM
|
0
|
1
|
3595
|
|
POST
|
Instead of doing a static field calculate in order to symbolize my data by the related features I am trying to updated the parent as the related records are edited using attribute rules. Any suggestions? var sql = "VALVE_ID = '" + $feature.valveid + "'"
var guid = "'" + TOP(filter(FeatureSetByName($datastore,'UTILITIES.DBO.uti_wdSystemValve',['globalid']),sql),1) + "'";
var date_ = $feature.exercisedate
return {
'edit': [{
'className': 'UTILITIES.DBO.uti_wdSystemValve',
'updates': [{
'GLOBALID': guid,
'attributes': {
'lastexercised': date_
}
}]
}]
}
... View more
11-15-2019
12:38 PM
|
0
|
3
|
3595
|
|
BLOG
|
Xander Bakker Using this we can now access related table data but we still can't symbolize or label using the same logic? Is this still a limitation? Seems like we still can't.
... View more
11-13-2019
07:32 AM
|
0
|
0
|
17651
|
|
BLOG
|
Two Notes: 1. I had to make my Version Table a Feature Class for it to work. 2. Adding ${official_survey_version} = '' will allow the form to be displayed if the user is offline. This will prevent the user from being locked out in the field if they did not upgrade while online. When they get back online, it will hide the form (and their collected data), allow them to update, and send form. If you properly update your forms you should always allow data to be submitted from any version.
... View more
11-12-2019
05:43 AM
|
1
|
0
|
919
|
|
BLOG
|
[BUG-000126568: Photo watermark text after a pound sign (#) does not appear in resulting photos collected in Survey123.]
... View more
11-06-2019
02:07 PM
|
0
|
0
|
25605
|
|
POST
|
James, Error: Underlying DBMS error [HY000:[Microsoft][ODBC Driver 13 for SQL Server]Connection is busy with results for another command] [GISDB.DBO.FC_S123_TABLE]. I believe this to be the one error in my way. Here are the scenarios that work and fail. This seems to not be a S123 issue so maybe you can point me to someone else. After Insert a. The post is successful and I am able to use data from inserted and update tables in the geodatabase with inserted data. b. The post is successful when I use an exec store procedure and do not use any data from inserted in the SP. c. The post fails when I use an exec store procedure and try to capture any data from inserted in the SP. example: exec sp_send_dbmail fails with inserted data in the email body/subject... This is the one I want and this is the one that gives me the error above. After Update d. The post is successful and I am able to use data from inserted and update tables in the geodatabase with inserted data. e. The post fails when I use an exec store procedure and do not use any data from inserted in the SP. f. The post fails when I use an exec store procedure and try to capture any data from inserted in the SP. example: exec sp_send_dbmail fails with inserted data in the email body/subject... This is the one I want and this is the one that gives me the error above. I do receive these same results when applying edits at the rest end point as mentioned above. I am using SS2016 and 10.7. Data is Archived. When applying the edits directly in ArcMap I do not have any issues. Thanks.
... View more
11-05-2019
06:08 AM
|
0
|
5
|
2010
|
|
BLOG
|
The '#' character breaks the watermark. Is this by design? I have thousands of domains with '#'s. topLeftWatermark="D##" The "D" will show up but nothing after the ##
... View more
11-04-2019
12:37 PM
|
1
|
0
|
25605
|
|
POST
|
This has been logged: BUG-000126023 I just wanted to add that this camera issue occurs in Tablet mode and Non-tablet mode on the MS Surface.
... View more
10-16-2019
09:10 AM
|
0
|
0
|
2797
|
|
POST
|
I have had several instances were records in the sent folder of Survey 123 Version 3.5 (has happened with several versions) Windows was not received in in the feature class. Records are sent over the course of 3 months then reports are generated. At this time it is realized that records in the Sent folder are not in the database, they must be copied and resent. We are in a rural area and the internet connection is over a wireless transmission for a a short distance. These records are labeled as Sent in Survey123, however, they are not received. I plan on adding email alerts for the operators so they can alert me when data is not received. Does Survey123 confirm the data was sent and received, it would not appear so. I do suspect it is due to our network setup in this particular scenario (but would like Survey123 to alert on this). I have hundreds of records send a week over WiFi and 4G that have not had this issue. Is the data sent over TCP or UDP connection?
... View more
10-10-2019
11:12 AM
|
0
|
4
|
2275
|
|
POST
|
We are beginning to deploy custom Survey 123 builds across our enterprise via Windows. While deploying for iOS is rather simple and streamlined we are having issues with Windows enterprise deployment. I believe the main issue is the app wants to install under the user by default rather than the machine (for all users to access). I understand the My Surveys is by user for security, which is fine. We would like to code in the install location of the app in Program Files (is this done during cloud make?). Additionally a machine install allows us to check the install status and version for updates and removal. We would also like to silence the install so the user does not get prompted. Any suggestions?
... View more
10-10-2019
08:15 AM
|
0
|
1
|
1213
|
|
BLOG
|
Thanks! We appreciate all the Survey123 Teams hard work!
... View more
10-09-2019
12:41 PM
|
0
|
0
|
12805
|
|
POST
|
Thanks for responding... I was able to install an older build of 3.0 that does work with the Surface Pen. 3.5 and 3.6 do not. I also installed AppStudio Player which also does not work which leads me to believe it originates from AppStudio 4. Windows 10 Pro v 1809 Installed on 6/4/2019 OS Build 17763.379 The pen works as expected for all other apps including Collector. This issue relates to this question: Microsoft Pen Support in AppStudio 4 I will log a bug with tech support regarding the camera.
... View more
10-08-2019
05:40 AM
|
0
|
1
|
2797
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-07-2026 08:20 AM | |
| 2 | 06-11-2026 02:54 PM | |
| 3 | 06-11-2026 05:45 AM | |
| 1 | 06-09-2026 02:07 PM | |
| 1 | 06-05-2026 01:26 PM |