|
POST
|
Hello everyone How to reorder fields in a feature class with model builder? Thanks
... View more
07-14-2015
09:10 AM
|
0
|
4
|
5089
|
|
POST
|
Helo everyone, How can I update the property "Allow NULL values" of a field with Model builder? I need to change this property several feature classes from No to Yes. Thank you
... View more
07-13-2015
06:31 AM
|
0
|
1
|
3769
|
|
POST
|
Hello everyone, Any sample showing how to show all the selected features from a feature class in a map in a DataGridView. I am building an add-in for that. Will you use a dockable window or a regular window? Thanks
... View more
07-10-2015
07:56 AM
|
0
|
2
|
3907
|
|
POST
|
Hello everyone, Is there a way to populate the feature class ID using the rule "GENERATE_ID_BY_INTERSECT" only when field ID is empty in the feature class. The goal is to avoid to generate several times the a new ID for the same feature. Thanks
... View more
06-29-2015
12:02 PM
|
0
|
1
|
3263
|
|
POST
|
Hi Mike, The table is not versioned and has an SDE role that allows to edit the table in a regular ArcMap session after unchecking the Versioning editing in the editor options. Let me check the log file. We are using ArcSDE 10.2 with Oracle 11.
... View more
06-24-2015
06:22 AM
|
0
|
0
|
907
|
|
POST
|
Hello everyone, How the table “GenerateID” is added to a map and updated when working in an SDE versioned environment, when the table "GenerateID” is not versioned. When the attribute assitant runs the rule “GENERATE_ID_BY_INTERSECT” it needs to save the next available sequence in the table "GenerateID”, but if the table is not versioned the rule returns an empty string. Thanks
... View more
06-23-2015
11:21 AM
|
0
|
2
|
3903
|
|
POST
|
Hi Marcela, You need to use the feature class name For example feature class Sewer Manholes (SManhole) has a field called Municipality ID (MUNICID) and gets populated with the value of the municipality polygon when it gets digitized. OBJECTID TABLENAME FIELDNAME VALUEMETHOD VALUEINFO ON_CREATE ON_CHANGE ON_CHANGEGEO ON_MANUAL RUN_WEIGHT COMMENTS 218 SManhole MUNICID INTERSECTING_FEATURE Municipality_poly|MUNICID 1 0 1 0 3
... View more
06-10-2015
05:57 AM
|
0
|
0
|
1296
|
|
POST
|
Hi Marcela, I was able to configure it. the config file (Loaded.config) is located in different folders following your operating system Configure Attribute Assistant - Water Utility Network Editing | ArcGIS for Local Government Operating System Directory Windows Vista, 7, and 8 C:\Users\%UserName%\AppData\Roaming\ArcGISSolutions\ConfigFiles Windows Server 2008 C:\Users\%UserName%\AppData\Roaming\ArcGISSolutions\ConfigFiles Windows XP C:\Documents and Settings\%UserName%\Application Data\ArcGISSolutions\ConfigFiles Windows Server 2003 C:\Documents and Settings\%UserName%\Application Data\ArcGISSolutions\ConfigFiles
... View more
06-10-2015
04:22 AM
|
0
|
2
|
1296
|
|
POST
|
Hello everyone, How can I run the command in arcSDE 10.2.2: sdemon -o info -I users -s xxxx -i sde:oracle11g:xxxx -p xxxx -u xxxx I get the error message: ArcSDE Instance sde:oracle11g:dsde5 Registered Server Tasks on s0140404 at Mon M ay 11 08:46:03 2015 ------------------------------------------------------------------------- Entry for SDE instance not found in services file, Unable to get users H:\> this command works on 10.1 and 10.0 thanks
... View more
05-11-2015
05:48 AM
|
0
|
3
|
5672
|
|
POST
|
I found the problem and a solution. It looks like when removing the representation from a feature class it removes fields, and domains related to thee representation, but it does not remove the link between these same fields and the domain listed under the Subtypes of the feature class. To solve this issue I just removed the domain for the fields RULEID and RULEID_1 at the field list level and also inside each Subtype field list level: if fname == "SFitting": stypeList = ["1", "2", "3","4","5","6","7","8","9","10","11", "12", "13", "14"] try: arcpy.RemoveDomainFromField_management(fc, "RULEID") except Exception: print arcpy.GetMessages(0) pass try: arcpy.RemoveDomainFromField_management(fc, "RULEID_1" ) except Exception: print arcpy.GetMessages(0) pass if stypeList: try: arcpy.RemoveDomainFromField_management(fc, "RULEID", stypeList) except Exception: print arcpy.GetMessages(0) pass try: arcpy.RemoveDomainFromField_management(fc, "RULEID_1", stypeList ) except Exception: print arcpy.GetMessages(0) pass
... View more
05-07-2015
10:35 AM
|
0
|
0
|
552
|
|
POST
|
Hello everyone, After deleting the representation from several feature classes inside a feature dataset, I get the error message bellow when I try to export the schema or when I try to copy the feature dataset to another geodatabase. XML export failed: The domain was not found. ([featureclass]_Rep1_Rules) The problem shows in SDE 10.2.x and in File Geodatabases 10.2.2 using ArcGIs 10.2.2. Any explanation?
... View more
05-05-2015
04:44 PM
|
0
|
1
|
4514
|
|
POST
|
Hello everyone, When running ModelBuilder if the option "Background Processing" is disabled it shows all the commands executed on the screen. How can I do the same thing when running a Pytho script or at least when I run the script with IDLE or PyScripter? the problem when testing a Python script it does not show what is executing Thanks
... View more
05-01-2015
12:19 PM
|
0
|
3
|
3505
|
|
POST
|
Solution: Versioning the feature dataset fixed this problem.
... View more
04-29-2015
07:37 AM
|
0
|
1
|
1038
|
|
POST
|
Hi all I am using ArcGIs Desktop 10.2.2 and SDE 10.2 When running a "“CalculateField” command in Python or ModelBuilder it shows the following error message: ERROR 999999: Error executing function. Objects in this class cannot be updated outside an edit session [SEW.SCrossing] Failed to execute (Calculate Field (17)). Thanks
... View more
04-29-2015
06:59 AM
|
0
|
2
|
4302
|
|
POST
|
Hello everyone, GIS sofware: ArcSDE 10.2 and ARCGIS Desktop 10.2.2 I am running a command in Python and ModelBuilder to delete values from a domain and add new values to the same domain. When I run the command "arcpy.DeleteCodedValueFromDomain_management" from a Python script or ModelBuilder it works fine without any error message. But when I go back to the SDE instance the values are still there. I disconnected the instance, refresed it but the error persists. This command works correctly in a personal or file geodatabase but in SDE it does not delete the values from the Domain. Any comments in this issue?
... View more
04-29-2015
05:05 AM
|
0
|
0
|
2683
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|