|
POST
|
Hi Rickey, This help topic describes how you can create a hosted feature layer join view and the parameters that you use to recreate the top filter using in the Business Continuity solution. Extend business continuity surveys - Coronavirus Business Continuity | ArcGIS Solutions
... View more
09-25-2020
08:14 AM
|
1
|
0
|
2118
|
|
POST
|
Hi Joe, to use the Survey123 web form you only need an Editor user type. The mobile app would require a Field Worker. I did want to add that we currently offer packs of 50 additional Editor user types at a reduced price for use with the Coronavirus Business Continuity solution. We are extending this to apply to the Coronavirus Health Screening solution as well. So something to consider. Coronavirus Business Continuity Solution | No Cost Template | Software Pricing
... View more
08-25-2020
08:56 AM
|
1
|
0
|
4707
|
|
POST
|
Hi Joe, the HealthScreenings_public view is used by both the Employee and Visitor Health Screening surveys and is the only one you need to share for it to be accessible. The view is configure to allow users to only add new records, they can't query, update or delete. In addition to securing the survey and view, if employees have a named user when they login to the survey it will automatically pull their full name and email into the form, which simplifies what they have to fill out. Otherwise, yes you are correct if you share publicly it it will be possible for anyone to access. However, they will only be able to submit new records and won't be able to query anything from the service or edit existing records.
... View more
08-24-2020
08:38 AM
|
2
|
1
|
4709
|
|
POST
|
Hi Cassidy, That behavior you are seeing was a bug in the solution deployment tool that we have since fixed. I am not sure how far down the configuration you have gone, but if you download the most recent version of the solution deployment tool and re-deploy the solution when you modify a domain on the source feature layer it will automatically show up in all the views.Otherwise, unfortunately you will need to update the domain on each view, there isn't a way through the UI to do a mass updated.
... View more
08-06-2020
06:16 AM
|
0
|
0
|
2820
|
|
POST
|
Hi Cassidy, Yes, we are using attributes to define which apps the projects display in as they move through the project planning and tracking phases. This story map provides a good overview of all the individual apps and describes the attributes you need to set to move it to the next set of apps in the solution. Essentially to move them to Capital Project Review you need to set the Project Status field to 'Analysis and Review'. Then to show them in the Capital Project Dashboard or Locator you would set the project status to 'Board Authorized' and Funded Project to 'Yes'.
... View more
08-05-2020
01:08 PM
|
0
|
2
|
3325
|
|
POST
|
Joe Borgione, I believe that error is occurring because it is trying to insert a new record and add an attribute for a field with the name 'toleft', but you don't have 'toleft' in your schema. You will need to find and replace all references to this field with the corresponding field in your schema.
... View more
07-29-2020
06:43 AM
|
0
|
1
|
3205
|
|
BLOG
|
The Address Data Management solution can be used by mapping technicians to maintain an inventory of road centerlines, valid road names, site addresses, and related mailing addresses.The solution includes an ArcGIS Pro project with a schema database and feature classes pre-configured with attribute rules to help automate and ensure the integrity of you addresses and centerlines while editing. One capability that isn't included by default but can be configured in the solution is the ability to pull information from an intersecting feature when a new address is created or moved. For example, you might want to pull the name of the municipality, the zip code, or the property identification number (PIN) the address falls within and write it to a field within the site address point. This involves adding a new attribute rule to the Site Addresses feature class. To add an attribute rule to your site addresses layer and pull information from an intersecting feature complete the steps below. It is important to note this rule requires both the addresses feature class and the feature class you want to pull the intersecting feature from be in the same database. In ArcGIS Pro from the Contents pane, right-click the Site Addresses layer. From the Design menu, select Attribute Rules. From the Attribute Rules view, click the drop-down next to Add Rule and select Add Immediate Calculation Rule. Provide a Name and Description for your rule. From the Field drop-down, select the field in your Site Addresses layer you want to write the attribute from the intersecting feature to. Click the Expression button to open the Expression Builder. Copy and paste the code below into the Expression Builder. // replace 'FeatureClassName' with the name of the feature class to pull intersecting features from (ex. Cities, ZipCodes, Parcels)
var intersectingFeatures = Intersects(FeatureSetByName($datastore, "FeatureClassName"), $feature);
for (var feature in intersectingFeatures) {
// replace 'fieldname' with the name of the field from the intersecting feature to pull the value from
var value = feature.fieldname;
if (IsEmpty(value)) continue;
return value;
}
return null; In the code find and replace the text "FeatureClassName" with the name of the feature class to to pull intersecting features from (ex. Cities, ZipCodes, Parcels) In the code find and replace the text "fieldname" with the name of the field from the intersecting feature to pull the value from. Click the Verify button and click OK to close the Expression Builder. From Triggers, check Insert. If you would also like the rule to run when the address is moved as well, check Update. Click Save on the Attribute Rules tab on the ribbon. This button will be disabled if you have any pending feature edits, save or discard your edits to enable the Save button. The rule should now be active, when you create a new site address point the rule should run and pull the attribute of the intersecting feature into the field specified by the rule. You could repeat the steps above to add additional rules for different feature classes and field values. The code above is configured to return null if no intersecting features are found and if multiple intersecting features are found (overlapping polygons) it will return the first non null feature attribute found. Below are some additional code samples for some other common scenarios. Return multiple intersecting feature values as comma delimited list // replace 'FeatureClassName' with the name of the feature class to pull intersecting features from (ex. Cities, ZipCodes, Parcels)
var intersectingFeatures = Intersects(FeatureSetByName($datastore, "FeatureClassName"), $feature);
var values = [];
for (var feature in intersectingFeatures) {
// replace 'fieldname' with the name of the field from the intersecting feature to pull the value from
var value = feature.fieldname;
if (IsEmpty(value)) continue;
values [Count(values )] = value;
}
return Concatenate(values, ", ");
Return multiple intersecting feature values as a statistic (Mean, Min, Max, Sum) // replace 'FeatureClassName' with the name of the feature class to pull intersecting features from (ex. Cities, ZipCodes, Parcels)
var intersectingFeatures = Intersects(FeatureSetByName($datastore, "FeatureClassName"), $feature);
var values = [];
for (var feature in intersectingFeatures) {
// replace 'fieldname' with the name of the field from the intersecting feature to pull the value from
var value = feature.fieldname;
if (IsEmpty(value)) continue;
values[Count(values)] = value;
}
return Mean(values);
... View more
07-17-2020
10:15 AM
|
2
|
1
|
1337
|
|
POST
|
Hi Lindsay, The editing feature template of the view is used to set the value of the category when new reports are submitted.The pdf below describes the steps to add a new problem category to the app including, creating a view and defining the feature template for the view. https://www.esri.com/content/dam/esrisites/en-us/media/pdf/learn-arcgis/configuring-citizen-problem-reporter.pdf
... View more
07-09-2020
01:45 PM
|
1
|
0
|
1299
|
|
POST
|
Hi Antony, Sorry for the delay. This is occurring because the view used by the survey has been configured with the setting to now allow anyone to query the service for records, only new records can be added. This is to secure the information and not allow anyone to query sensitive information. The side effect is the data view in Survey123 is unable to query the records as well and display them in the website.
... View more
07-01-2020
10:44 AM
|
1
|
1
|
1148
|
|
POST
|
Hello, sorry for the delay in response. Last night we released the ArcGIS Solutions app with ArcGIS Online. It is now available in the app launcher for all ArcGIS users. See the blog post below for more details: Introducing the New ArcGIS Solutions App It is currently not possible for Distributors to build their own Solutions to host in the app, but this is something we are thinking about and would like to support this in the future.
... View more
07-01-2020
10:41 AM
|
0
|
0
|
936
|
|
POST
|
The Solution Deployment Tool will not upgrade or modify any already deployed items, this is because once deployed the items can be modified and would be very difficult for us to push the enhancements in place. However, when you deploy an update we will only create new versions of the enhanced items. For example if we enhanced a web application in the solution we will only deploy the new web application, on top of the existing web map and feature layers in your organization. So you won't need to re-load your data. If we need to modify the layers to change the schema we will deploy the new layers and maps and apps on top of the layers.
... View more
06-02-2020
05:33 AM
|
1
|
0
|
1540
|
|
POST
|
Hi Joe, Prior to 10.0, you would have to maintain these fields separately or run the standardize addresses tool to pull the information from the full street name into separate fields. This step is no longer required because the standardization process occurs when the address locator is built regardless of whether the address components are stored in a single field or split across multiple fields. So for example I put a locator on my site address points, using just the house number, the full street name (as the street name), and the municipality. I then did a search for an address with some incorrect info, i.e I search for '1313 Mill Rd' and it returned below. Notice how the components of the full road name 'N Mill St' were automatically pulled out into the separate fields, and it wasn't a perfect match but found a valid candidate.
... View more
05-27-2020
01:45 PM
|
0
|
3
|
2936
|
|
POST
|
Hi Charlie, Yes the Pro project that is included in the solution has a task that walks your through how to calculate the trend lines. You can do this for any time series data you have it is not limited to the metrics that are pre-configured in the solution. There is a task that describes how you can add additional fields to the layers provided and calculate your own trend lines. We also document how to configure the dashboard for the custom metrics and trends you add to the layers. Tabulate recovery metrics - Coronavirus Recovery Dashboard | ArcGIS Solutions Configure recovery dashboard - Coronavirus Recovery Dashboard | ArcGIS Solutions
... View more
05-15-2020
04:00 PM
|
1
|
0
|
4115
|
|
POST
|
Joe Borgione lines 147-153 is where it is sending the request to add the new site address points. Did you happen to change the name of the Site Address Point feature class. What are you setting for the offset and # of points for the Address Point?
... View more
05-06-2020
09:31 AM
|
1
|
1
|
1378
|
|
POST
|
Joe Borgione, if you are using the editing feature templates to construct the points, the feature templates are what is setting the default values. You can update the existing feature templates with your defaults or create new templates with your desired default values. Feature templates—ArcGIS Pro | Documentation
... View more
05-06-2020
09:24 AM
|
2
|
1
|
4205
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-05-2026 06:12 AM | |
| 1 | 02-06-2026 09:24 AM | |
| 1 | 11-07-2025 07:59 AM | |
| 1 | 11-06-2025 07:04 AM | |
| 1 | 08-28-2025 08:25 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-17-2026
01:31 PM
|