POST
|
I have users who are experiencing this same issue but it doesn't seem like anyone at Esri has commented on this on any thread I have seen.
... View more
a week ago
|
0
|
0
|
15
|
POST
|
Yes.. The problem was the missing of the quotes: In case of adding a text/string field to a shapefile table, you should write like this: arcpy.CalculateField_management("Layer_Name","Column_Name", '"String/text_you_want_to_add"')
... View more
01-05-2021
09:11 AM
|
0
|
0
|
90
|
POST
|
A general solution to this problem can be found here: https://desktop.arcgis.com/en/arcmap/10.7/tools/environments/qualified-field-names.htm simply add: arcpy . env . qualifiedFieldNames = False at the beginning of your script and the joined field names will not be renamed when exporting the data using e.g. arcpy.CopyFeatures_management.
... View more
11-29-2020
11:44 PM
|
0
|
0
|
40
|
POST
|
Hi Craig, There are many scripts on that page but more specifically which script allows you to create assignment (work orders) from collector data? Workflow: Person in the field using collector changes status of priority to "1", then a work order is created in workforce. Thanks.
... View more
01-24-2018
11:05 AM
|
1
|
0
|
73
|
POST
|
I got the below to work but it's really slow. def FindLabel ( [RelateFieldofTable] ): strWhereClause = '"' + "RelateFieldofTable" + '"' + " = '" + [RelateFieldofTable] + "'" strpTable = "PathToRelatedTable" rows = arcpy.SearchCursor(strpTable,strWhereClause) strLabel = '' for row in rows: strLabel += '\n'+ row.FieldToLabel return [RelateFieldofTable] + strLabel
... View more
04-26-2016
09:14 AM
|
2
|
0
|
69
|
POST
|
Try this https://www.arcgis.com/home/item.html?id=90134fb0f1c148a48c65319287dde2f7
... View more
04-05-2016
10:39 AM
|
1
|
0
|
7
|
POST
|
If you're using Web AppBuilder I noticed in the location widget setting there's an option to set the zoom scale.
... View more
04-01-2016
09:54 AM
|
0
|
0
|
9
|
POST
|
The server is where i run my scripts with task scheduler.
... View more
02-17-2016
03:33 PM
|
0
|
0
|
18
|
POST
|
Both logic and formatting are available for labels. Logic: Label Expressions Formatting: Formatting Tags
... View more
02-05-2016
02:45 PM
|
1
|
0
|
11
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|