|
DOC
|
@TK4211 looks like the time zone information is not maintained with the Append operation. There is an ArcGIS Idea posted about this. I would recommend appending some code after the "Appending Features" portion to update the date field. In the below example, it's adding 4 hours to a date field: from datetime import datetime, timedelta
with arcpy.da.UpdateCursor(fLyr.url, ['<date field>']) as cursor:
for row in cursor:
row[0] = row[0] + timedelta(hours=4)
cursor.updateRow(row)
del cursor
... View more
09-01-2022
10:33 AM
|
0
|
0
|
56715
|
|
DOC
|
@cmerwin you will just have to update the # Variables section in the script with your information. Scroll to the right to see a description on each variable. # Variables
username = 'jskinner_CountySandbox' # AGOL Username
password = '*******' # AGOL Password
URL = 'https://services.arcgis.com/dlFJXQQtlWFB4qUk/arcgis/rest/services/CitizenProblems/FeatureServer/0' # Feature Service URL
dateField = 'CreationDate' # Date field to query
hoursValue = 1 # Number of hours to check when a feature was added
fromEmail = '[email protected]' # Email sender
toEmail = ['[email protected]', '[email protected]'] # Email receiver(s)
smtpServer = 'smtp.esri.com' # SMTP Server Name
portNumber = 25 # SMTP Server port
... View more
09-01-2022
03:38 AM
|
0
|
0
|
14306
|
|
POST
|
@RafaeldePedro I was able to successfully publish a service with hatching symbology using ArcGIS Pro 2.9.2 with the style referenced in this document, and using Map Viewer Classic/Web AppBuilder.
... View more
08-24-2022
07:48 AM
|
3
|
1
|
3394
|
|
DOC
|
@DickieRigdon yes, as the dataset grows, the field you created to store the URL will update each time the script is executed.
... View more
08-22-2022
03:51 AM
|
0
|
0
|
16589
|
|
DOC
|
@Trippetoe , you are right, the Append operation is not honoring attachments. This is my first attempt at using Append with attachments, and none came through. It would be worth logging a case with Tech Support. I'm not sure if this is a bug, or intended functionality. If the latter, hopefully this is in the road map.
... View more
08-15-2022
06:26 AM
|
0
|
0
|
56965
|
|
DOC
|
@Trippetoe can you share the service to an AGOL group and invite my account (jskinner_CountySandbox)? I will download the service, and publish to my AGOL org to try and reproduce.
... View more
08-10-2022
04:53 PM
|
0
|
0
|
57063
|
|
POST
|
@Ranga_Tolapi the version of the geodatabase would be different. ArcMap 10.8.1 will upgrade your geodatabase to version 10.8.1. ArcGIS Pro 3.0 will upgrade your geodatabase to version 11.0.0.
... View more
08-08-2022
06:22 AM
|
2
|
1
|
3047
|
|
DOC
|
@Trippetoe your best bet is to simply execute the tool again if it were to fail.
... View more
08-08-2022
06:03 AM
|
0
|
0
|
57141
|
|
DOC
|
@ElizabethZizzamia1 SAML user account is not supported with this tool. If trying with a built-in account, make sure you have the security question set when you first log in with this account.
... View more
08-08-2022
05:10 AM
|
0
|
0
|
35393
|
|
POST
|
Hi @David_ECGA, What type of imagery are you georeferencing? It may be a highly compressed image format, such as a SID. Take a look at the properties of the raster by right-clicking on it in the Catalog pane > Properties. It will list the uncompressed size there: ArcMap/Pro cannot write to all output types, so it will uncompress the image.
... View more
07-29-2022
07:05 AM
|
0
|
1
|
1485
|
|
DOC
|
@GregCarlino2 the mapsdb_2_ds_5dvlweynyockhtz0 data store is when you register a data store in ArcGIS Pro. It will create an item in Portal. If you create the data store connection in ArcGIS Server Manager by going to Site > Data Stores, it will create the data store connection as mapsdb. Yes, you can run the script once for each DSID, that should not have an deleterious effects.
... View more
07-29-2022
06:55 AM
|
0
|
0
|
32889
|
|
DOC
|
@DickieRigdon check your username. It is case sensitive. For example, if I try jskinner_countysandbox, I receive the same error. However, jskinner_CountySandbox works.
... View more
07-25-2022
09:59 AM
|
0
|
0
|
16891
|
|
DOC
|
@DickieRigdon, The tool is working from me on my end. Can you send a screen shot of how you have the GP tool configured?
... View more
07-25-2022
06:25 AM
|
0
|
0
|
16928
|
|
DOC
|
@DickieRigdon if the service is an AGOL hosted feature service, can you share the service to a group and invite my user account (jskinner_CountySandbox)? I can take a look to see what's going on.
... View more
07-20-2022
04:56 PM
|
0
|
0
|
16991
|
|
DOC
|
@GregCarlino2 you can update the existing Data Store connection to the new geodatabase connection file and the services will update, however the labels in Server Manager will not. As for why the workflow is not working, I can't say for sure. I would need to further trouble shoot.
... View more
07-18-2022
09:29 AM
|
0
|
0
|
32993
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 12:27 PM | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|