POST
|
Every time I update to a new version, I have to either uninstall the old one first, or install the new one to another directory. I saw this related idea: https://community.esri.com/ideas/13982-auto-update-survey123-connect-for-arcgis#comments But was wondering if I am missing something, or if this is expected behavior. If so, it should be documented somewhere to avoid confusion in the updating process.
... View more
02-08-2018
09:38 AM
|
2
|
9
|
7440
|
IDEA
|
I agree, super surprised that this is not already done. Seems like a common thing for any Windows app.
... View more
02-08-2018
09:30 AM
|
2
|
0
|
3106
|
POST
|
This still seems to be the case at v 2.6. It is really odd, as this seems like it should be a standard feature, like almost any other Windows application. Probably the best way to save all of your forms/files is to copy them to another directory, uninstall, then put them back.
... View more
02-08-2018
09:29 AM
|
0
|
1
|
1520
|
POST
|
Callum, This was also the problem for me. One sneaky field in the midst of dozens that was just a little short in field length. Very difficult to diagnose without trying to edit values in each field. Thanks!
... View more
01-10-2018
01:32 PM
|
0
|
0
|
2588
|
POST
|
I too am using a Samsung Galaxy Tab S2, and I see the same problem. I have pictures saved in multiple folders on the device, but navigating through Survey123 yields only empty looking folders. This might be a new issue, as I have been using my device for most of the year, and I do not think I had this issue before. Currently running version 2.4.72
... View more
10-05-2017
01:17 PM
|
0
|
1
|
3541
|
POST
|
For arcpy functions, I use the mock library. Here is a basic example: import scriptRef import unittest from mock import mock class ScriptUnitTests(unittest.TestCase): @mock.patch('arcpy.da') def test_when_starting_session_should_start_edtior(self, mock_da): variables = " " scriptRef.scriptMethod(variables) mock_da.Editor.assert_called_with(variables) I also recommend this article for helpful arcpy testing strategies: Testing with ArcPy: Isolation and Mocking· Notes from the Lifeboat
... View more
09-21-2017
11:57 AM
|
0
|
1
|
3013
|
IDEA
|
Many workflows assign a task, receive a result, then either approve or reject it. If there was a way to basically just edit the status field in the assignments table, as a Dispatcher, it would greatly apply to many workflows in many industries. This is technically possible manually, by going through the feature service, and setting the Status field from "Completed" to "Assigned". But obviously having this capability through Workforce would be much better. A rejection of an assignment prompts the mobile worker to re-do the work associated with assignment. Specifically, this would greatly help with Survey123 integrations, where forms follow this workflow: Assignment by Dispatcher Submission by Mobile worker Rejection/Approval by a Dispatcher. Re-submission by Mobile worker (if rejected)
... View more
08-18-2017
06:37 AM
|
9
|
1
|
1209
|
POST
|
On the overview page for a survey, it appears that the "Last Submitted On" query does not account for resubmitted sent forms. I am guessing that it is looking at the "Created_Date" field. A better approach may be to look at the "Edit_Date" field, which will give a more accurate indication. Use Case: My field technician submitted a form on 8/7. To correct errors, he resubmitted the form on 8/12. The widget on my overview page says that the last submitted form was on 8/7, which is not completely true.
... View more
08-14-2017
01:50 PM
|
0
|
1
|
607
|
IDEA
|
This would be extremely helpful for a workflow we are using. We have an append function copying over specific records from a field survey. However, we need another script just to properly take care of attachments. This involves a recalculating of the relationship ID in the attachments table to match the new globalid. Preserving the globalid with one environment setting (as the documentation claims) would be amazing. This really needs to work outside ArcGIS Pro, as many users have server scripts on a scheduler.
... View more
08-02-2017
07:13 AM
|
5
|
0
|
6611
|
POST
|
I had the same problem, but I think using an input mask solves this. I cannot yet confirm that this works properly on all mobile devices, but I will be trying it on a project soon. Basically, the " > " character should change inputs into uppercase. Also, I found this information on MS Access helpful when formatting input masks (Similar language seems to apply to Survey123 input masks): Control data entry formats with input masks - Access
... View more
07-26-2017
07:54 AM
|
1
|
2
|
3487
|
BLOG
|
That is interesting. I cannot speak to the other related tables, but I do know that the attachment table does not need editor tracking fields (CreationDate, etc.). (I'm running this hourly on a project right now) Looks like the attachments could be failing in a couple areas. First, it could be not finding that there is an attachment table. There is a place in the code that checks for it (around line 386). Then there is a search cursor and update cursor to pseudo append records to a temp table, and then an actual append to your existing attachments table (line 449). It may be failing somewhere in there too.
... View more
07-18-2017
11:01 AM
|
0
|
0
|
8387
|
BLOG
|
This was resolved by enabling editor tracking in AGO. Basically my records contained null values in the CreationDate field. SyncSurvey filters out records with dates that are less than the last sync date. (i.e. if you syncronized yesterday at noon, it would filter out anything before or equal to yesterday at noon). But if your CreationDate field does not meet that criteria (because all values are null), it will copy over every record, each time you run SyncSurvey. Thus resulting in duplicate records. Beware of editor tracking conflicts with creating replicas though. I had to disable, then re-enable for it to work.
... View more
05-25-2017
02:40 PM
|
0
|
0
|
8387
|
BLOG
|
If you are able to, you could change the field name in the table to "CreationDate", since you can assign the created date in editor tracking to any valid field. But I know how changing schema must be avoided sometimes. Otherwise, if you have PyCharm or another python app, try throwing a breakpoint around line 207 and see what you get for the "dateField" variable. If you have mock data, try running it both ways (with "CreationDate" and "created_date"). My guess is that you will notice a difference in the format, thus causing the invalid expression error.
... View more
05-25-2017
09:43 AM
|
0
|
0
|
8387
|
BLOG
|
This may be an issue with the date attribute, but my records keep duplicating in this fashion: If I have 1 original record, 1 record is populated in my SDE feature class upon first run. I submit 1 additional survey record, giving me 2 original records. Upon 2nd run, my SDE feature class will have 3 records (should only be 2). Upon 3rd run, my SDE feature class will have 5 records (should only be 2). Upon 4th run, my SDE feature class will have 7 records (should only be 2). Essentially, it adds my original records fresh each time as new records. We are using timezone: America/Chicago in the config, but the Sys_Transfer_Date still seems to be off. Not sure if this would contribute or not.
... View more
02-16-2017
01:36 PM
|
0
|
0
|
20484
|
POST
|
If you are having trouble with text labels rotating sideways when you rotate your data frame, you can also adjust it on the Label toolbar, under "Options". Then check/uncheck "Data Frame Rotation".
... View more
06-06-2012
11:21 AM
|
0
|
1
|
1429
|
Title | Kudos | Posted |
---|---|---|
1 | 07-26-2017 07:54 AM | |
2 | 02-08-2018 09:38 AM | |
2 | 02-08-2018 09:30 AM | |
9 | 08-18-2017 06:37 AM | |
5 | 08-02-2017 07:13 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|