|
POST
|
I just created a new one in a FGDB with v6 selected and I do not see Big Int
... View more
09-24-2024
05:52 PM
|
0
|
1
|
1953
|
|
POST
|
Well look at that. I am wrong. That is good to know. I retract my comment.
... View more
09-24-2024
07:39 AM
|
1
|
0
|
1980
|
|
POST
|
A class can only participate in one controller dataset. So if the classes are controlled by the Utility Network, you cannot create a topology on those classes.
I was proven wrong
... View more
09-24-2024
03:58 AM
|
0
|
2
|
2003
|
|
POST
|
That error is only triggered when you do not have a featuredataset called "UtilityNetwork"
... View more
09-19-2024
05:27 AM
|
0
|
1
|
1158
|
|
POST
|
Just add and OrderBy date to your featureset and call First on it. Also, do not assign this rule to a field, the return is better like this https://developers.arcgis.com/arcade/function-reference/featureset_functions/#orderby if ($feature.Adoption_Status != "Approved") {
return ;
}
var parent_id = $feature.GlobalID;
if (IsEmpty(parent_id)){
return;
}
// Could use https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyrelationshipname also
var relatedTab = FeatureSetByName($datastore, "AAS_Adopters", ['GlobalID', 'Parent_GUID', 'Name', 'Email', 'Phone_Number'], false)
var relatedRec = First(OrderBy(Filter(relatedTab, 'Parent_GUID = @parent_id'),'<YOUR DATE FIELD> DESC'))
if (IsEmpty(relatedRec)){
return;
}
return {
"result": {
"attributes": {
"Adopted_By": relatedRec.Name,
"Adopter_Contact_Email": relatedRec.Email,
"Adopter_Contact_Number": relatedRec.Phone_Number
}
}
} also, please post code as code snippet(javascript for arcade). It really helps.
... View more
09-17-2024
05:31 AM
|
1
|
1
|
1344
|
|
POST
|
It looks like the rest end point(https://developers.arcgis.com/rest/services-reference/enterprise/synthesizeassociationgeometries-utility-network-server/) supports containment, but there is no option on the Pro dialog to show them. I would suggest logging an enhancement to support showing the containment
... View more
09-14-2024
06:46 AM
|
1
|
0
|
1668
|
|
POST
|
2025 - More info here - https://community.esri.com/t5/arcgis-field-maps-blog/field-maps-and-utility-network-version-7/ba-p/1500536
... View more
09-06-2024
07:21 AM
|
0
|
0
|
2018
|
|
POST
|
Select a group by field in the Batch Trace, that is the value used.
... View more
09-03-2024
06:49 AM
|
1
|
0
|
1915
|
|
POST
|
The fields property of a subtype group layer shows the root level assignments. Please log a bug, as it should show the subtype assignments.
... View more
08-31-2024
12:30 PM
|
0
|
1
|
1257
|
|
POST
|
The Batch trace stores the summary info on the aggregated geometry and has an option to store it on the starting point. https://esri.github.io/Utility-Data-Management-Support-Tools/docs/3.3/BatchTrace.html
... View more
08-30-2024
02:07 AM
|
0
|
2
|
2001
|
|
POST
|
I also would suggest loading into an asset package and creating a new UN if you can. It might actually be faster.
... View more
08-28-2024
02:20 PM
|
0
|
0
|
1907
|
|
POST
|
It is best sharing code, add is as a code sample. For arcade, I pick Javascript. It is much easier to read, it maintains formatting, etc. var lv_apt = $feature.LV_APT;
if (!IsEmpty(lv_apt)){
lv_apt = `#${lv_apt}`
}
parts = [$feature.ST_NUM, $feature.DIRPRE, $feature.FEANME, $feature.FEATYP, lv_apt];
return function not_empty(x) {
return !IsEmpty(x);
}
return Concatenate(Filter(parts, not_empty), ' ');
... View more
08-28-2024
02:09 PM
|
0
|
0
|
691
|
|
POST
|
If you want to handle " ", then change not_empty to function not_empty(x) {
if (TypeOf(x) == 'String'){
x = Trim(x)
}
return !IsEmpty(x);
... View more
08-27-2024
03:24 PM
|
1
|
0
|
3506
|
|
POST
|
Here is how we do it function not_empty(x) {
return !IsEmpty(x);
}
return Concatenate(Filter(['a', 'b', '', null,'c'], not_empty), '-'); returns "a-b-c"
... View more
08-27-2024
03:21 PM
|
2
|
1
|
3507
|
|
POST
|
Take a look at https://developers.arcgis.com/arcade/function-reference/array_functions/#filter
... View more
08-27-2024
02:21 PM
|
1
|
0
|
3550
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 2 | 07-07-2026 06:45 AM | |
| 1 | 06-26-2026 09:15 AM | |
| 1 | 06-05-2026 05:01 AM | |
| 1 | 06-02-2026 01:29 PM |
| Online Status |
Online
|
| Date Last Visited |
7 hours ago
|