|
POST
|
Happy Monday everyone, I'm hoping someone from the Experience Builder team can answer this question. Is it in the workplan to add the reshape, split, and merge tools to the edit widget? Currently in my agency we are using those tools for wildfire and forest stand mapping using Web App Builder. Since WAB will be retiring next year, I need to begin making transition plans. Thank you, Michael
... View more
05-22-2023
05:31 AM
|
14
|
4
|
2593
|
|
POST
|
On Friday I opened up a support ticket with Microsoft to see if they could do something on their end. The conclusion was that the fix would have to be done by ESRI. We did a lot of testing looking for work arounds to avoid having to rebuild flows. No luck. However, we took a close look at the JSON generated by the Survey 123 connector. We compared a working flow and a non working flow and one thing that stood out was the "PortalUrl" parameter was blank in the non working flow's JSON. In the working flow's JSON it was "portalUrl": "https://www.arcgis.com". See both JSON's below (portalUrl colored in orange). @BarbaraWebster1 , would it be possible to expose the PortalUrl parameter where users can input the portal url? I wonder if that might solve the issue. Thanks, Michael Working Survey 123 Connector: { "inputs": { "host": { "connection": { "name": "@parameters('$connections')['shared_survey123_1']['connectionId']" } }, "body": { "webhook": { "name": "MS-FLOW", "events": [ "addData" ], "url": "@{listCallbackUrl()}", "includePortalInfo": true, "includeUserInfo": true, "includeSurveyInfo": true, "includeServiceRequest": true, "includeServiceResponse": true } }, "path": "/api/survey/@{encodeURIComponent('0dc764dbbe8145bd821a3751a8fc3c70')}/webhook/add", "queries": { "portalUrl": "https://www.arcgis.com" }, "authentication": "@parameters('$authentication')" } } Survey 123 Connector with Error Message "inputs": { "host": { "connection": { "name": "@parameters('$connections')['shared_survey123_2']['connectionId']" } }, "body": { "webhook": { "name": "MS-FLOW", "events": [ "addData" ], "url": "@{listCallbackUrl()}", "includePortalInfo": true, "includeUserInfo": true, "includeSurveyInfo": true, "includeServiceRequest": true, "includeServiceResponse": true } }, "path": "/api/survey/@{encodeURIComponent('0dc764dbbe8145bd821a3751a8fc3c70')}/webhook/add", "queries": { "portalUrl": "" }, "authentication": "@parameters('$authentication')" }, "metadata": { "flowSystemMetadata": { "swaggerOperationId": "AddData" }, "operationMetadataId": "0b3a1791-5fe2-405d-b00f-96eed3a17dca" } }
... View more
05-09-2023
09:47 AM
|
2
|
0
|
2564
|
|
POST
|
Following this post. I was planning on upgrading to ArcGIS Enterprise 11.1 next week, but will hold off until I see if a solution to this problem is available.
... View more
05-05-2023
11:16 AM
|
1
|
0
|
4845
|
|
POST
|
I have also been dealing with this issue and just escalated the bug through ESRI support. I have several complicated flows that need changes. Some will be a nightmare to rebuild. Is there any hope that this bug will be corrected without having to delete the Survey 123 connector? Thank you, Michael
... View more
05-01-2023
12:31 PM
|
0
|
0
|
2606
|
|
POST
|
@nacelle_pylondid you ever figure out what your issue was? I'm having the same problem using field calculator on a enterprise gdb feature class stored in SQL Azure. No VPN. Compression, statistics and rebuilding indexes are ran nightly.
... View more
05-01-2023
07:53 AM
|
2
|
0
|
4354
|
|
IDEA
|
We really need this in my agency for wildfire mapping and stewardship plans. Right now we are using Web App Builder and it's editor widget for these workflows. Is there any update to this idea?
... View more
03-28-2023
07:29 AM
|
0
|
0
|
7064
|
|
POST
|
Thank you gentlemen. I don't know why it hung up on me yesterday, but today it worked like a charm.
... View more
12-14-2022
07:39 AM
|
0
|
0
|
1419
|
|
POST
|
I haven't been able to find documentation on this yet and am looking for a work around to publishing feature layer views from an enterprise geodatabase. Does anyone know if its possible to publish multiple editable services from one feature class in an enterprise gdb environment? I've tried doing this in ArcGIS Pro. The process starts, but never finishes. It just seems to get hung up. Thanks, Michael
... View more
12-13-2022
10:04 AM
|
0
|
3
|
1483
|
|
POST
|
I haven't experienced the specific bug you are referring to, but I have had issues appending to some hosted feature services that have tens of thousands of records. The process can take several hours to complete which really isn't a feasible workflow. I don't know if this will help much but my work around is to overwrite the feature service from a file geodatabase using python instead of trying to append. It took me a minute to setup the script, but once going, it gets the job done. https://support.esri.com/en/technical-article/000023164 Hope this helps some. Michael
... View more
12-13-2022
09:50 AM
|
1
|
1
|
2926
|
|
POST
|
@MichaelMannion Thank you for this information. I just incorporated it into one of my surveys tied to an Enterprise Geodatabase that has related tables with the same field names. Have you ran into any issues with using the path names in your calculation fields? I'm having an issue where my fields aren't calculating if they are tied to a relevant question, but I think this might be a bug in the the latest 3.16 update.
... View more
11-22-2022
07:19 AM
|
1
|
0
|
1281
|
|
POST
|
Yes, the hyphens seemed to be the problem. My db admin ended up renaming the database without a hyphen and that solved my issues.
... View more
11-10-2022
10:58 AM
|
1
|
0
|
2760
|
|
POST
|
Hey George, Thank you for the information. I can view the tables but it still fails when I try to create a relationship class. Before, I was getting the message "you must be the owner of both tables to create a relationship class." Now that I have db_manager privledges, it's telling me that the tables under the dbo user are not registered with the Geodatabase. It looks like I'll need to have dbo privledges to register those tables with the Geodatabase.
... View more
10-19-2022
10:42 AM
|
0
|
1
|
1318
|
|
POST
|
I'm working on a project where I've taken an already existing SQL database in Azure and enabled Enterprise Geodatabase functionality. Following ESRI documentation, my database administrator created a login/user for me to use as the geodatabase administrator. Now what I'm wanting to do is create feature classes and link them to already existing tables in the Geodatabase with relationship classes. However, I am unable to do so because I am not the owner of the existing tables in the database. The existing tables in the database are named in the following format: databasename.dbo.tablename and my feature classes are named databasename.myusername.tablename. I know if I have dbo privledges, then I can create the relationship classes. However, how is this accomplished in Azure? My db admin and I have gone through all of the ESRI and Microsoft docs with no luck. We've tried giving 'dbmanager' privileges to my user, but for some reason it's not putting dbo in the new table names. Are we missing something? Thanks, Michael
... View more
10-18-2022
01:00 PM
|
0
|
3
|
1373
|
|
IDEA
|
Hi, Is it in the workplan to add additional editing tools to the Editor Widget in Experience Builder? My agency could really use the 'Split', 'Reshape', and 'Merge' tools similar to what's in the Web App Builder Edit Widget. Foresters in my agency create forest stand type maps and stewardship plan maps for landowners. Those editing tools are needed for those types of maps. Thanks, Michael
... View more
07-20-2022
08:31 AM
|
0
|
0
|
1711
|
|
POST
|
Hello, I have ArcGIS Pro 2.9.2 installed on a VM running Windows 2016 that also has Server/Portal 10.6.1 installed as well. We upgraded the operating system from Windows 2012 several weeks ago and since then cannot connect to Portal from ArcGIS Pro installed on the same machine. I can however, connect to portal from ArcGIS Pro from my personal work computer running windows 10. I have a case open with ESRI tech support but we haven't solved the issue yet. When I try to connect, I get the following message: Unable to add portal. Please make sure that the specified portal is up, running and the portal url is correct. Just to clarify, portal is up, running, and the url is correct. Any ideas what might be causing the issue? Thank you, Michael
... View more
05-18-2022
06:11 AM
|
1
|
0
|
812
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-22-2022 07:19 AM | |
| 1 | 07-25-2025 06:01 AM | |
| 1 | 12-20-2024 10:41 AM | |
| 1 | 10-08-2024 07:10 AM | |
| 2 | 05-01-2023 07:53 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|