|
POST
|
Try Asset Package to Geodatabase, it creates a new geodatabase, stages the UN and then applies the asset package. This will eliminate some variables.
... View more
05-22-2025
11:54 AM
|
0
|
1
|
1507
|
|
POST
|
What are your parameters? What is your target GDB type? Have you tried Asset Package to Geodatabase?
... View more
05-22-2025
10:59 AM
|
0
|
3
|
1522
|
|
POST
|
-2 is invalid, a rule cannot be created for this combo. Some more info https://github.com/Esri/Utility-Data-Management-Support-Tools/blob/gh-pages/help/ImportExport_matrix.md
... View more
05-21-2025
09:14 AM
|
1
|
0
|
1057
|
|
POST
|
The Trace Results to GDB and Export Reporting Data could be used, but the output is neither an Asset Package or Utility Network.
... View more
05-16-2025
11:23 AM
|
0
|
0
|
1290
|
|
POST
|
The https://doc.arcgis.com/en/arcgis-solutions/latest/reference/other/ElectricExpanded_DataDictionary.ht... replaces the link you provided. That link is for the older version of the solution and we cannot change it due to version control
... View more
05-16-2025
08:15 AM
|
0
|
2
|
2754
|
|
POST
|
The most current docs linked on the solution site are below: https://doc.arcgis.com/en/arcgis-solutions/latest/reference/other/ElectricUnbalancedDistributionEssentials_DataDictionary.html https://doc.arcgis.com/en/arcgis-solutions/latest/reference/other/ElectricExpanded_DataDictionary.html
... View more
05-16-2025
08:09 AM
|
0
|
5
|
2766
|
|
POST
|
Attribute Rules are not supported in ArcGIS Online. Forms support Arcade, but that profile does not allow the ability to insert rows into other classes.
... View more
05-16-2025
04:53 AM
|
0
|
0
|
1227
|
|
POST
|
The rules show that a 3 phase primary can only connect to line side, since there is not an ambiguous rule, an explicit terminal connection is not required, as the rules define that is can only connect to the one line and not the other.
... View more
05-15-2025
05:00 PM
|
1
|
4
|
2030
|
|
POST
|
That makes sense. The shipped version of the UDMS toolset was build for 3.1. A lot has changed since then and requires the new toolset. In upcoming versions of the foundations, we are removing the toolset and providing instructions on getting the appropriate version of the toolset from github. Writing tools that work in multiple versions of ArcGIS Pro with multiple different python versions has it's challenges and the best solution is to have a toolset per version of ArcGIS Pro.
... View more
05-15-2025
06:05 AM
|
1
|
0
|
1662
|
|
POST
|
Can these sheets be manually added and populated with stormwater related information (assuming we can figure out that information)? Or do we move along with the current SW DataMapping.xls table with the existing worksheets? - Unless you need them, should not affect anything - You can run the Create Simple Data Mapping and include the old sheet to carry it forward into the new schema - We ran the Create Migration Workspace GP tool in the SW Pro project, which failed. - What was the failure? The most recent version of the tools are here - https://github.com/Esri/Utility-Data-Management-Support-Tools
... View more
05-14-2025
02:00 PM
|
0
|
2
|
1685
|
|
POST
|
You need to specify a Domain Name, the validation should have caught this, but it looks like it is missing. Once you specify a domain name, you need to set the correct targetclass.
... View more
05-14-2025
06:03 AM
|
2
|
0
|
1250
|
|
POST
|
You still should only change the name field when it is different. So you should look at doing it this way: // Need the expects as we are accessing attributes via variable key, this tells the code to retrieve these fields
Expects($feature, "NAME","NAME1","NAME2","NAME3");
var fglobalId = $feature.FEATUREGLOBALID;
var name_fields = ["NAME","NAME1","NAME2","NAME3"];
var main_fc = FeatureSetByName($datastore, "Main_FC", ["GLOBALID", "NAME","NAME1","NAME2","NAME3"], false);
var related_main_fc = Filter(main_fc, "GLOBALID = @fglobalId");
var updates = [];
for (var f in related_main_fc) {
var atts = {}
for (var i in name_fields){
var name_field = name_fields[i];
if ($feature[name_field] == f[name_field]){
continue;
}
atts[name_field] = $feature[name_field];
}
// IsEmpty does not work on dicts, so convert to text to see if empty
if (text(atts) == '{}'){
continue;
}
Push(updates, {
'globalId': f.GLOBALID,
'attributes': {
'NAME': $feature.NAME
}
});
}
if (Count(updates) == 0 ){
return;
}
return {
'edit': [{
'className': 'Main_FC',
'updates': updates
}]
};
... View more
05-13-2025
05:45 AM
|
0
|
0
|
1688
|
|
POST
|
You need to check if each row has the same name. Try this: var fglobalId = $feature.FEATUREGLOBALID;
var main_fc = FeatureSetByName($datastore, "Main_FC", ["GLOBALID", "NAME"], false);
var related_main_fc = Filter(main_fc, "GLOBALID = @fglobalId");
var updates = [];
for (var f in related_main_fc) {
if ($feature.NAME == f.NAME){
continue;
}
Push(updates, {
'globalId': f.GLOBALID,
'attributes': {
'NAME': $feature.NAME
}
});
}
if (Count(updates) == 0 ){
return
}
return {
'edit': [{
'className': 'Main_FC',
'updates': updates
}]
}; * Edited code, no reason to return Geometry and also needed to add NAME to the FeatureSetByName constructor
... View more
05-13-2025
04:46 AM
|
1
|
2
|
1706
|
|
IDEA
|
We added a new switch state called Open-Traceable. This switch state is a condition barrier for the subnetwork definition. One Tie Switch would be set to Open, and one set to Open-Traceable. When you run Export Subnetwork, you override the Subnetwork Definition and remove this condition barrier. The de-energized section is included in the subnetwork that the Open Traceable tie switches subnetwork. The phase information of that section is still reported as De-energized, as result of propagation is not recalculated on Export Subnetwork. Some more info here - https://www.esri.com/arcgis-blog/products/utility-network/electric-gas/utility-network-design-to-operations
... View more
05-13-2025
03:20 AM
|
0
|
0
|
1038
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 4 weeks ago | |
| 1 | 06-26-2026 09:15 AM | |
| 1 | 06-05-2026 05:01 AM | |
| 1 | 06-02-2026 01:29 PM | |
| 2 | 05-27-2026 08:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|