|
POST
|
I'm not sure that is the case, my join fields don't have the same name, but they are of the same type of field, which I believe was also the case for Add Join.
... View more
08-06-2025
07:24 AM
|
0
|
0
|
278
|
|
POST
|
@GC_GIS Here's an update to eliminate model builder from adding View to the end of the Output and breaking your model. 1. Ensure your ArcGIS Pro project is stored on the local machine, not saved to network drive 2. Remove all spaces from the Path of the project (ex. C:\ArcGIS\MyProject\No_spaces ) 3. If your using Add Join in your model, replace with Join Field or Join Features tools instead. Following and implementing these three things has eliminated my issues with model adding View to the end of the output file. If the issue still exists, I would reach out to ESRI support.
... View more
08-04-2025
10:34 AM
|
0
|
2
|
294
|
|
POST
|
I have been experiencing the same thing, and cannot find a fix in ArcGIS Pro 3.3.6 and its very frustrating. Has worked fine in earlier versions 3.1 and earlier for me. About to reach out to ESRI support on this one.
... View more
07-31-2025
03:29 PM
|
0
|
0
|
309
|
|
POST
|
Thanks again Alex, that solved the issue. Have a great week.
... View more
07-29-2024
09:01 AM
|
0
|
0
|
1377
|
|
POST
|
Thank you Alex, I will give it a go and let you know if there are any issues. I don't remember having this much difficulty when I configured the 2.1 version, and it has been definitely stumping me. When watching what videos are out there, they go through that portion of dragging and dropping the url into the dialog boxes so fast, you don't pick up on this important fact.
... View more
07-29-2024
08:54 AM
|
0
|
1
|
1379
|
|
POST
|
Create Data Loading Workspace ===================== Parameters Source to Target Mapping https://services5.arcgis.com/00hUnoewKbhedDpg/arcgis/rest/services/ServiceLine_d7ec844a2d354b33a46959f6f2b03002/FeatureServer https://services5.arcgis.com/00hUnoewKbhedDpg/arcgis/rest/services/ServiceLine_d619965624b2452a8931c1aac06d4f5c/FeatureServer Output Folder C:\Users\rfreer\Documents\ArcGIS\Projects\Lead Service Line Upgrade Calculate Feature Count Statistics true Data Loading Workspace Predictive Field Matching Options MATCH_FIELDS;MATCH_VALUES Predefined Mapping Create_Data_Loading_Workspace_Predefined_Mapping Create Matches by Subtype true ===================== Messages Start Time: Monday, July 29, 2024 7:24:32 AM ArcGIS Pro 3.1.5.41833 dltsolutions 3.1.3 An output was not created due to no matches being found in the Source to Target Mapping parameter. Succeeded at Monday, July 29, 2024 7:24:33 AM (Elapsed Time: 1.15 seconds)
... View more
07-29-2024
08:39 AM
|
0
|
3
|
1384
|
|
POST
|
I have been trying to upgrade from version 2.1 to 3.0 but I am unable to create a data loading workspace from arcgis online datasets. It keeps giving an error when running the create data loading workspace tool, that no workspace was created because there were no matches. The 2.1 version is out-of-the-box, no changes made to the schema, so it should have matches. If I export the feature classes to a file geodatabase, and run the tool, it has no issues. Any advice on how to get the data loading workspace to work with the hosted feature classes in arcgis online?
... View more
07-29-2024
08:03 AM
|
0
|
3
|
1397
|
|
IDEA
|
Developing a Dashboard for Pavement Maintenance utilizing Asset and Task Data. One of the Indicators that I would like to create requires creating two separate FeatureSets with the Arcade Profile for FeatureSetByPortalItem. It's easy enough to get an indicator to display the totals for each, but I have been having real difficulty writing the Arcade Expression to get the percentage of Lane Miles Rehabilitated. The simple expression is (Total Lane Miles Rehabilitated) / (Total Lane Miles Publicly Maintained), however these totals are from two separate datasets, and for those of us not familiar with Arcade expressions, can find it daunting to dive into the limited resources out on writing the expressions. This photo is a draft for the dashboard, the indicator in the bottom left is my attempt at the arcade script: // Connection to ArcGIS Portal var portal = Portal('Portal URL') //FeatureSet for the Calculation //Tasks_Polygon_Pavement var Tasks = FeatureSetByPortalItem(portal, '1ab4ab9425964ede9c1faaef0aeae1a7', 2,['rehabilitation', 'number_of_lanes', 'lane_miles', 'totalcost'], false ); var Rehab = Filter(Tasks, "rehabilitation = 'Yes'") var RMiles = sum(Rehab, "Lane_Miles") //Engineering_Assets_PavementArea var Assets = FeatureSetByPortalItem(portal, 'fdc330cc0c86465fb11b4fd271f2f408', 5,['*'], false); var TMiles = sum(Assets, "Lane_Miles") var fs_dict = { fields: [{name: 'Rehab_Percentage', type: 'esriFieldDouble'}, {name: 'Rehab_Miles', type: 'esriFieldDouble'}, {name: 'Total_Miles', type: 'esriFieldDouble'}], geometryType: '', features: [{attributes: {'Rehab_Percentage': Round((SUM(Rehab, 'Lane_Miles')/SUM(Assets, 'Lane_Miles'))*100,2), 'Rehab_Miles': Round((SUM(Rehab, 'Lane_Miles')),2), 'Total_Miles': Round((SUM(Assets, 'Lane_Miles')),2) }}]}; return FeatureSet (Text(fs_dict)) Like I said, I'm not an expert at all when it comes to scripting, but I'm trying to figure it out. I'm pretty certain my problem with the script lies in the Dictionary, was able to view results from everything above as I wrote the expression. The script results are: Result: (Blank) Type: FeatureSet If you were able to write a simpler Arcade Script where "Indicator A Value" / "Indicator B Value" = "Indicator C Value", it would make life much easier for those of us that can't script like the Pros. From what I've been able to comprehend, using the FeatureSetByPortalItem, things get more complicated/restrictive of what you can do, so maybe I'm just trying something that isn't possible. After grueling attempts, I was able to get a working expression for the Percentage of Total Lane Miles Rehabilitated, but now to add a filter for dates: // Connection to ArcGIS Portal var portal = Portal('Portal URL') //FeatureSet for the Calculation //Tasks_Polygon_Pavement var Tasks = FeatureSetByPortalItem(portal, '1ab4ab9425964ede9c1faaef0aeae1a7', 2,['rehabilitation', 'number_of_lanes', 'lane_miles', 'totalcost'], false ); var Rehab = Filter(Tasks, "rehabilitation = 'Yes'") var RMiles = sum(Rehab, "Lane_Miles") //Engineering_Assets_PavementArea var Assets = FeatureSetByPortalItem(portal, 'fdc330cc0c86465fb11b4fd271f2f408', 5,['*'], false); var TMiles = sum(Assets, "Lane_Miles") var PMiles = Round((RMiles / TMiles * 100),2) var out_dict = { fields: [ {name: 'Percent_Rehab', type: 'esriFieldTypeDouble'}, {name: 'Last_Treatment_Date', type: 'esriFieldTypeDate'}, ], geometryType: '', features: [ {attributes: { Percent_Rehab: PMiles}} ] } return FeatureSet(Text(out_dict))
... View more
02-16-2024
03:28 PM
|
1
|
0
|
769
|
|
IDEA
|
It would also be nice to add the AutoCad object as well. We utilize this for details in a Geometric Network, I know the Utility Network offers some of this functionality, but its more for online maps versus hardcopy/pdf maps.
... View more
03-09-2023
12:50 PM
|
0
|
0
|
5407
|
|
POST
|
I've been trying to access the first link for view/edit attributes widget, but its says I don't have permission to view. Is this for Web App Builder and not Operational Dashboard?
... View more
03-25-2021
10:03 AM
|
1
|
0
|
1491
|
|
IDEA
|
I would like add my vote for this functionality. I am building a public facing application as well for an Adopt-A-Program where constituents can find available roadways, trails, trailheads, and paths, and using a Survey123 form, submit an application. The plan was to hopefully select the available feature in the list, which would auto populate in the form. I find that it will lead to alot of problems trying to enforce them to select the feature in the map prior to submitting the form to capture all the data automatically. Integration with other widgets to send data to the Survey123 app will create a cleaner and more useable application.
... View more
02-04-2021
02:33 PM
|
0
|
0
|
1272
|
|
POST
|
I've created an experience that is using the Table(beta) widget linked to a Web Map, when creating, viewing from ArcGIS Online, everything works great. Map and Table load as expected when viewing live. Now I've published and shared the application for public viewing, and the map loads fine, but the Table takes forever to load with the data. There are only 25 records currently, with 4 fields displaying with 21 total fields in the table. I took the performance issue to be from alot of unused fields with very long fields, so I deleted all of those and still slow. All of that was from a dataset hosted on ArcGIS Online. So I created a brand new dataset, loaded the features from the original dataset, loaded it to our enterprise database, shared as service, added it to the original web map, reset all the settings in experience builder, and still slow. I have another table on a different page in the same experience, and that loads quick. So I don't know where to go from here. Has anyone else had difficulty with performance issues (load speed) with the Table Widget?
... View more
02-04-2021
09:22 AM
|
2
|
4
|
1621
|
|
POST
|
Good Morning Zhifang, The answer to your statement, We have an issue in our backlog to allow the org administrators to fully edit the survey in Survey123 website (design, share, view/edit data), please let us know if you want to share other's surveys as an org administrator through Survey123 website so you can avoid doing detailed settings in ArcGIS Online. Most definitely it would be easier for Org administrators to be able administer sharing permissions in Survey123 if that is ESRI’s intent on handling these settings for the author. I understand the intent is to make it easier for the survey owner to make these determinations, but for organizations that want to control the content going out to the public to ensure the wrong information isn’t being shared, then the ease of controls for the Administrator should be equally easy instead of having to guess and test the settings. I know everything is evolving so fast, and I appreciate the lead that ESRI is taking and making life easier for everyone. Rich
... View more
07-25-2019
07:33 AM
|
0
|
4
|
6146
|
|
POST
|
Schwu-jing, This only shows the settings for the Feature Layer (Hosted) settings, but doesn't really tell you about how you should or shouldn't set share permissions for the fieldworker, and stakeholder feature layers.
... View more
07-24-2019
04:24 PM
|
0
|
6
|
6147
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-16-2024 03:28 PM | |
| 1 | 03-25-2021 10:03 AM | |
| 2 | 02-04-2021 09:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|