|
POST
|
For what it's worth, I also tried assigning the editor user the User Type "ArcGIS Advanced Editing", and got the same result.
... View more
01-20-2025
03:57 PM
|
0
|
1
|
2015
|
|
POST
|
David - Thanks much for the suggestion. I've considered this as well and I thought I had my bases covered, but maybe not. I'm using SQL*Server. Here are the permissions granted to my editor user: - Server Roles: - The schema containing the UN data is named GISADMIN. I've granted my editor user SELECT, INSERT, UPDATE and DELETE on this schema. Out of desperation I granted the same to the SDE schema. - Also the editor user has the Enterprise user type "Creator" If I'm missing something I would greatly appreciate any pointers. Thx, Ed
... View more
01-20-2025
09:57 AM
|
0
|
2
|
2025
|
|
POST
|
On the off chance that there might be another "TestVersion" lurking somewhere unseen in my database, I tried again with a version name I sure does not exist. Same result:
... View more
01-18-2025
05:32 PM
|
0
|
4
|
2064
|
|
POST
|
OK. I'm stumped. I've got a branch versioned feature service from which I'm trying to create a new version as a child of SDE.Default. Here's are the GP tool parameters: and here is the error there is no other version of this name in this database. I don't know if there is an issue with the name provided ('TestVersion') or something else. Any thoughts or suggestions would be much appreciated. Thx, Ed
... View more
01-18-2025
03:01 PM
|
0
|
6
|
2094
|
|
POST
|
It seems the steps that created this condition (at least in our case) were: - Drop the geometric network - Un-ArcFM-ify all classes in the feature dataset It seemed that after dropping the network all contained classes were un-ArcFM-ified, so that afterward the "Un-ArcFM" operation actually did nothing. However, one of these steps did not perform exactly as expected. So that while after the steps were completed it *seemed* that the ArcFM class extensions were removed, in fact they were not. Ultimately the work-around appears to be: - Re-ArcFM-ify the classes - Confirm the classes are actually ArcFM classes - Un-ArcFM-ify the classes I tried these steps in a test environment and afterward was able to add them all to an ArcGIS Pro project. (Hopefully the last post in this thread) Ed
... View more
01-17-2025
09:42 AM
|
2
|
0
|
1729
|
|
POST
|
So... I dug in closer and examined the Definition column GDB_Items table (sorry ESRI folks) for one of the problem classes. In this case it was a CapacitorBank -- previously an ArcFM Simple Junction, but as presented in ArcCatalog now just a "Point" feature class. What I found in the EXTCLSID tag in the Definition XML was this: <EXTCLSID>{91BC9A23-B210-4EE5-B524-93BCD640E58D}</EXTCLSID> Which, per the SE ArcFM site is an ArcFM class extension for simple junction features (below). How this remained after I had "un-ArcFM-ified" the feature class I don't know. However, I modified the Definition XML to remove the class extension (again, sorry ESRI) so it now looks like this: <EXTCLSID /> I *now* can add the feature class to an ArcGIS Pro map. Pretty sure there has to be a better way to do this. Ed
... View more
01-16-2025
05:32 PM
|
0
|
1
|
1746
|
|
POST
|
I should have also noted that the new replica geodatabase is archive-enabled. We used ArcCatalog to enable the archiving. Would this cause heartburn for ArcGIS Pro? Ed
... View more
01-15-2025
05:25 AM
|
0
|
0
|
1768
|
|
POST
|
We have an production Oracle Geodatabase with an ArcFM-ified electric geometric network. We created a replica Oracle Geodatabase in which we dropped all geometric networks and un-ArcFM-ified all classes. However, when we try to open some of the feature classes, such as GIS.Transformer, in ArcGIS Pro we get the error message: Unable to create object class extension COM object We have triple-checked in ArcCatalog that the class is a simple Point feature class. Any ideas on why we would be getting this message would be much appreciated. Thx, Ed
... View more
01-14-2025
03:02 PM
|
0
|
3
|
1812
|
|
POST
|
Laura - Thanks for the reply. I tried to follow instructions from the first link you provided and at this point I think something is screwjaw with my Server implementation. Will reach out to Tech Support for help on this. Thanks again for the info. Ed
... View more
01-10-2025
01:29 PM
|
0
|
0
|
933
|
|
POST
|
Per the screenshot below, I've published a feature service with data populated in a U/N geodatabase. While I *can* add the map image layer to the map, I *cannot* add the feature service to the map. This was published by a user with as many admin privileges as I know to provide. Any clues as to where to search for the problem would be much appreciated. Thx, Ed
... View more
01-10-2025
12:06 PM
|
0
|
2
|
962
|
|
POST
|
Hi Rich - Finally got a chance to try this. Works like a champ. Thanks much! Ed
... View more
01-04-2025
04:57 PM
|
0
|
0
|
1025
|
|
POST
|
Hi - I'm trying to create an ElectricJunction feature using the ArcGIS Pro SDK. Below is a snippet of the code that creates the feature. All non-nullable fields are set, except ASSOCIATIONSTATUS and ISCONNECTED. When I hit the "CreateRow" statement I always get the error "Field is not Nullable". However, when I try to assign a value to either ASSOCIATIONSTATUS or ISCONNECTED I get the error "Field cannot be assigned" (or something similar.) So, I'm missing something fundamental here. Any guidance would be much appreciated. Thx, Ed // Create a new junction feature here using (RowBuffer rowBuffer = junctionFC.CreateRowBuffer()) { rowBuffer["ASSETGROUP"] = assetGroup; rowBuffer["ASSETTYPE"] = assetType; //rowBuffer["ASSOCIATIONSTATUS"] = 0; // Default //rowBuffer["ISCONNECTED"] = 2; rowBuffer["PHASESNORMAL"] = 7; // ABC rowBuffer["PHASESENERGIZED"] = 7; rowBuffer["PHASESSUMMER"] = 7; rowBuffer["PHASESWINTER"] = 7; rowBuffer["PHASESPLAN"] = 7; rowBuffer["LIFECYCLESTATUS"] = 2; // In Service rowBuffer["CONSTRUCTIONSTATUS"] = 5; // Existing rowBuffer[junctionClassDefinition.GetShapeField()] = mp; using (Feature newFeature = junctionFC.CreateRow(rowBuffer)) { context.Invalidate(newFeature); } createCount++; } }
... View more
01-02-2025
11:05 AM
|
0
|
2
|
1070
|
|
POST
|
The GlobalID_1 field was defined as a "GlobalID". Once I removed this my "Apply Asset Package" task completed successfully. Ed
... View more
12-20-2024
08:04 AM
|
0
|
0
|
2228
|
|
POST
|
Paul - Thank you. That seems to have gotten me over that particular hump. With that change my "Apply Asset Package" process ran nearly an hour and hit the error below. Which I'm pretty sure is unrelated and merits its own question. (FWIW - I don't have editor tracking enabled in the source asset package and it doesn't seem to be enabled in the target UN dataset.) Thx Ed Adding GlobalID_1 to GISADMIN.StructureBoundary... ERROR 000852: Cannot add field GlobalID_1 to GISADMIN.StructureBoundary ERROR 002764: The field is used by Editor Tracking., The operation is not supported by this implementation. WARNING 000952: Failed to execute (AddField).
... View more
12-17-2024
05:57 PM
|
0
|
1
|
2254
|
|
POST
|
I've hit the identical error reported by BryanMay531. I've selected both domain networks. Is there a fix or work around for this? Thx, Ed
... View more
12-17-2024
12:40 PM
|
0
|
0
|
2269
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 07:31 AM | |
| 1 | 05-11-2026 02:55 PM | |
| 1 | 01-07-2026 12:34 PM | |
| 1 | 01-04-2026 05:14 PM | |
| 1 | 12-17-2025 07:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|