|
POST
|
It appears either your user account or Enterprise portal doesn't have the necessary prerequisites to publish hosted layers. See the documentation below for more information: https://enterprise.arcgis.com/en/portal/latest/use/hosted-web-layers.htm Most solutions include hosted feature layers which require this functionality be available in the portal in order to deploy solutions. If you enable this ability you should no longer see this error when deploying.
... View more
01-30-2024
12:55 PM
|
0
|
0
|
1016
|
|
POST
|
@Lacy_House, all the items that are referenced there in the error are Feature Services included in the solution. Could you try something to test if there is an issue with deploying hosted feature services in the portal? From the Content page in your portal, click New Item Click Feature Layer > Use a Template Select the AEDs and then Next through all the other dialogs to create the service. Does it successfully create?
... View more
01-30-2024
10:46 AM
|
0
|
2
|
1023
|
|
POST
|
@Joshua-Young, this issue does not occur in ArcGIS Online. I believe this may be related to how adding and editing records via the form is not available in 11.2, but will test at 11.3 and confirm that this is the case.
... View more
01-30-2024
10:38 AM
|
0
|
0
|
1004
|
|
POST
|
@Joshua-Young, I just realized you are at Enterprise 11.2. Editing related records via the form is not available in Enterprise 11.2. It will be coming at 11.3. For now having related blocks and detours is not critical to the solution and is not important to the community maps program for closures.
... View more
01-30-2024
10:12 AM
|
0
|
0
|
1920
|
|
POST
|
In the Road Closures app if you select an existing road closure line to edit the feature you can scroll down to the bottom of the form to view and add related road blocks and detours:
... View more
01-30-2024
09:57 AM
|
0
|
1
|
1925
|
|
POST
|
The Citizen Problem Reporter solutions uses both the Crowdsource Reporter and Crowdsource Manager configurable app templates as key components of the solution. As @Joshua-Young commented we recently released the new Manager instant app template as beta and it will be the replacement for the Crowdsource Manager application template. We are also working on a new Reporter instant app template that will be the replacement for the Crowdsource Reporter application template. We are planning the release of this new instant app template for next year. Once both of these instant app templates are released and out of beta will be releasing an update of the Citizen Problem Reporter solution leveraging these new instant apps and incorporating many of the enhancements you describe. For example the new Reporter and Manager apps will leverage the editing form that you can configure in the Map Viewer which provides the ability to mark field as required or add a subtitle/description to individual fields. You will also be able to leverage arcade to conditionally hide/show fields, conditionally require fields and calculate values into fields automatically. These new apps will leverage all the capabilities available in the new Map Viewer, including maintaining the rotation of the map. With regard to trying to configure things with the current Crowdsource Reporter app and it breaking the app and making it unusable, I would recommend that you do any customization to the map that supports the app in Map Viewer Classic. This is because the Crowdsource Reporter was built with the ArcGIS API 3.x which is compatible with Map Viewer Classic. The new Map Viewer is built with the ArcGIS API 4.x and has many capabilities that are not compatible with the Crowdsource Reporter and other 3.x apps. So from the items you list above, it is possible to customize the Crowdsource Reporter app to add additional fields when submitting a new issue/request. You would need to add this field to the feature service and then you would open the web map in Classic Map Viewer. You would then configure the pop-up for the Requests/Reports layer. Click Configure Attributes and toggle on the Edit checkbox next to the new field you added. You can also move the field up/down to change the order in which it is displayed in the form. Click Ok, Ok to commit the pop-up change and save the map. Now when you refresh the app you should see the new field in the form.
... View more
11-16-2023
07:38 AM
|
3
|
23
|
4371
|
|
POST
|
@LeviCecil, in the latest release of ArcGIS Online the NearMe widget in ExB now supports the ability to configure a message action on selection change. You can use this to filter and only show the school bus stops that are related to the selected school in the widget. This should allow you to select the elementary, middle or high school after you search by district and display only the bus stops for that location. We have not updated the solution to leverage this pattern yet and will look into doing this in a future release but you should be able to take you existing layers and maps and create a new ExB app with this widget to create this effect.
... View more
11-06-2023
08:03 AM
|
0
|
3
|
1338
|
|
POST
|
@LeviCecil, I don't have an estimate at this time. There may be an enhancement in the next ArcGIS Online release that could make this possible in the Near Me widget within ExB. I am still waiting to see if this functionality makes it in this release or the next. Once the functionality is available we could look into an update in the solution and you would be able to create similar in your own version of the app.
... View more
09-18-2023
06:13 AM
|
0
|
5
|
3498
|
|
POST
|
My guess would be that your SiteAddressPointsMSD feature class is not z-enabled. If you search for the line below in the code, you can see we are defaulting Z to 0: var newPoint = Point({ 'x' : xy[0], 'y' : xy[1], 'z' : 0, 'spatialReference' : geom.spatialReference }); You could change it to below if your feature class is not z enabled: var newPoint = Point({ 'x' : xy[0], 'y' : xy[1], 'spatialReference' : geom.spatialReference });
... View more
08-30-2023
12:59 PM
|
0
|
1
|
1399
|
|
POST
|
@bbaker_tngeo, my best guess is your Address Line feature class is z-enabled. The rule takes the geometry from the vertices of the line sketch to create the site address points and if the line feature class is z-enabled then the vertices geometry will have a z value. Since this feature class is just used for sketching and only has one rule, the easiest fix would probably be to delete it and recreate it without z values enabled.
... View more
08-25-2023
12:21 PM
|
1
|
1
|
2559
|
|
IDEA
|
@Joshua-Young starting at version 11.0 of ArcGIS Enterprise we no longer provide a local installer of ArcGIS Solutions. The app is included in the base install of Enterprise and the solutions available to deploy are pulled from an ArcGIS Online group for that specific version of Enterprise. This allows us to deliver solutions for a version of Enterprise independent of the Enterprise release. The issue is as we are developing new solutions we are always leveraging the latest capabilities available in ArcGIS Online. As a result these solutions are rarely compatible with previous versions of Enterprise because the functionality doesn't exist in those versions. This is why for our new solutions we typically release in ArcGIS Online first and then release in the next version of Enterprise as this is generally when it will have the required functionality to support the solution.
... View more
08-21-2023
06:47 AM
|
0
|
0
|
949
|
|
POST
|
@LeviCecil, I am seeing similar limitations in both Zone Lookup and Nearby. When I tried creating another relationship between the attendance zones and bus stops they were still not being filtered when I returned the zone. We will need to look at this for a future update of the solution to allow you to filter the related bus stops.
... View more
07-24-2023
08:08 AM
|
0
|
7
|
3704
|
|
POST
|
Hi @LeviCecil, the option was removed from the UI of Nearby in a recent release, but it still works in the My Neighborhood School app that was deployed with the solution so you can use that app for this case. Otherwise you can use the Zone Lookup app which provides a similar user experience. What you are wanting to do is possible with the My Neighborhood School map and app. You just need to follow the steps in my post above to customize the layers in the My Neighborhood School map. Each layer will be a filtered view of the attendance zones and when you use the app it will intersect each of the layers and return the attendance zone if found and the associated school information.
... View more
07-19-2023
06:09 AM
|
0
|
1
|
3738
|
|
POST
|
Hi @LeviCecil, The My Neighborhood School app and map are what you would want to use to support searching for an address and returning the attendance zones and schools that intersect this location. We are still using the Nearby app, but have enabled an option that only returns the intersecting polygons from the layers and doesn't display the buffer distance/search radius. This app uses a join view between attendance zones and schools called 'Schools_zones'. If you look in the web map there are 3 layers (Elementary School, Middle School, and High School). To add additional layers based on your School Type domain you will want to do the following: Open the My Neighborhood School web map in the Map Viewer Select one of the layers and under the options (...) click Duplicate Select the new layer and give it an appropriate name (this will display in the app UI) Change the filter on the layer to the appropriate value from the school type domain Save the web map Configure the My Neighborhood School instant app On the Nearby options click Search Method Check on the new layer you added in the step above to include it in the results Publish the app Now when you search it should return any attendance zones that are appropriate for that school type.
... View more
07-18-2023
06:57 AM
|
0
|
0
|
3755
|
|
IDEA
|
Hi @MervynLotter, I just tested on version 3.1.2 of ArcGIS Pro with the Wildlife Management solution and found the Rename Solution Content tool in the Solution Helpers toolbox ran successfully and was able to add a prefix to all the item names. Could you share more details about the failure/error you are seeing? What version of Pro are you using and could you send a screenshot of the error you are getting and the parameters you are specifying in the tool? Thanks, -Chris
... View more
07-18-2023
06:10 AM
|
0
|
0
|
2437
|
| 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
|