|
POST
|
In your map it looks like you dropped the shape field into the Location field. My colleague tried this and got nothing. What do you mean by EsriJSON and how do I create this? Thanks, --gary
... View more
05-16-2023
11:33 AM
|
0
|
0
|
1372
|
|
POST
|
If I log in using the fully qualified domain name of the server, the website works as it should and I see all the surveys under the My Surveys tab. I have a ticket open with support to try to pinpoint the issue.
... View more
04-27-2023
07:40 AM
|
1
|
0
|
1334
|
|
POST
|
When logging into the Survey123 website with our Portal credentials, I get to the landing page and i see the 3 bars telling me to wait and nothing happens (see attached screen grab). If I click on organization at the top, all of our surveys display and everything works. However, I have 2 dashboards with embedded surveys that do not work as well. they just display the 3 bars telling me to wait. This began after upgrading our Enterprise to v 11.0 Any help is appreciated. Thanks, --gary
... View more
04-19-2023
08:23 AM
|
2
|
3
|
1393
|
|
POST
|
We are in the process of updating our Portal services to use the ArcGIS Pro runtime and I received the following: 00294: Editable feature services cannot contain database views. <value> is a database view I really need this feature service in the workflow as it allows us to view a related table in a dashboard. Any ideas or work arounds? Thanks, --gary
... View more
02-10-2023
11:19 AM
|
0
|
1
|
1583
|
|
POST
|
Zach, I have the instance_name setup to show the name of the survey within the Inbox, I am looking display a custom label on the Inbox bar itself. Instead of the Inbox saying Inbox, I would like it to say 'Incomplete inspections' for example. Thanks, --gary
... View more
01-05-2023
11:32 AM
|
1
|
1
|
1013
|
|
POST
|
Does Power Automate only work with ArcGIS Online or can we use it with Enterprise? thanks, --gary
... View more
01-05-2023
11:02 AM
|
0
|
16
|
8368
|
|
POST
|
I would like to add a custom label to the Inbox to reflect the query that is limiting what is shown, ie. Incomplete Inspections. Is this possible? Thanks, --gary
... View more
01-05-2023
09:31 AM
|
0
|
3
|
1029
|
|
POST
|
Enterprise 10.9.1 no longer will no longer display feature services published using ArcMap. If the original feature service was published from ArcMap, this might be the issue. Try republishing using Pro and see if this resolves. Thanks, --gary
... View more
01-04-2023
07:03 AM
|
0
|
0
|
587
|
|
POST
|
I have a dashboard that contains an embedded Survey123 form that is used by office staff to update S123 forms that were collected in the field. It has been working great until last week. When editing data in the embedded survey, i now receive the following error: The survey was created in Connect using a feature service in Enterprise. The survey has not been updated for at least 2 months. If I login to Portal via survey123.arcgis.com I have no problem viewing the survey, saving in the collaborate tab. The editing of existing surveys works fine via the Inbox in the field app. Any ideas? Thanks, --gary
... View more
08-15-2022
08:24 AM
|
1
|
1
|
871
|
|
POST
|
Phil, Attached is the survey form and .csv file associated with barcode scan. I have been able to get this to work by using the boolean() and not(boolean()) functions instead of string-length(). I have also found that the html formatting (<div style>) as stated here: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-quick-guide-to/ba-p/1101322 doesn't work and I have to use old reliable <font color="blue"><b> html formatting. This is all being done to differentiate surveys in the Inbox. It would be great if we could set up multiple Inboxes instead. I have added this to the Ideas section. Thanks, --gary
... View more
06-09-2022
08:11 AM
|
0
|
0
|
2448
|
|
POST
|
We are having the same issue with calculations not working when editing from the Inbox. Field all 3.14.262. I can share survey if needed. Thanks, --gary
... View more
06-09-2022
07:54 AM
|
0
|
0
|
1034
|
|
POST
|
Phil, Thanks for the help, I got the statement to convert in Connect: if(string-length(${leak_id}=0), concat('<div style="font-weight:bold;color:green">',${location_name},' - NO LEAKS','</div>'), if(string-length(${leak_id}>0) and string-length(${leak_repair_date}=0), concat('<div style="font-weight:bold;color:red">', ${location_name}, ‘ – NEEDS REPAIR’,'</div>'), if(string-length(${leak_id}>0) and string-length(${leak_repair_date}>0) and string-length(${leak_recheck_date}=0), concat('<div style="font-weight:bold;color:orange">', ${location_name}, ‘ – NEEDS RE-CHECK’,'</div>'), if(string-length(${leak_id}>0) and string-length(${leak_repair_date}>0) and string-length(${leak_recheck_date}>0), concat('<div style="font-weight:bold;color:blue">', ${location_name}, ‘ – LEAK REPAIRED & RE-CHECKED’,'</div>'), '')))) however it does not appear to be working: There are 3 of the conditions in the nested if statement within the 4 surveys that are submitted. Suggestions? Thanks, --gary
... View more
06-07-2022
08:22 AM
|
0
|
2
|
2465
|
|
POST
|
I am trying to use nested if statements to color code the instance name in the Inbox. I have 4 cases that I need to check for: CASE 1 - No Leak If(string-length(${leak_id} = 0), concat('<font color="green"><b>', ${location_name}, '</b>', '</font>'), '') CASE 2 - Leak Found and Not Repaired If(string-length(${leak_id} > 0) and string-length(${leak_repair_date}=0), concat('<font color="red"><b>', ${location_name}, ‘ – NEEDS REPAIR’,'</b>', '</font>'), '') CASE 3 - Leak Repaired and Not Re-Checked If(string-length(${leak_id}>0) and string-length(${leak_repair_date}>0) and string-length(leak_recheck_date}=0), concat('<font color="orange"><b>', ${location_name}, ‘ – NEEDS RE-CHECK’,'</b>', '</font>'), '') CASE 4 - Leak Repaired and Re-Checked If(string-length(${leak_id}>0) and string-length(${leak_repair_date}>0) and string-length(leak_recheck_date}>0), concat('<font color="blue"><b>', ${location_name}, ‘ – LEAK REPAIRED & RE-CHECKED’,'</b>', '</font>'),'') So, putting this all together gives me: If(string-length(${leak_id}=0) , concat('<font color="green"><b>', ${location_name}, '</b>', '</font>'), If(string-length(${leak_id}>0) and string-length(${leak_repair_date} =0), concat('<font color="red"><b>', ${location_name}, ‘ – NEEDS REPAIR’,'</b>', '</font>'), If(string-length(${leak_id}>0) and string-length(${leak_repair_date} >0) and string-length(leak_recheck_date=0), concat('<font color="orange"><b>', ${location_name}, ‘ – NEEDS RE-CHECK’,'</b>', '</font>'), If(string-length(${leak_id}>0) and string-length(${leak_repair_date} >0) and string-length(leak_recheck_date}>0) ,concat('<font color="blue"><b>', ${location_name}, ‘ – LEAK REPAIRED & RE-CHECKED’,'</b>', '</font>', ‘’))))) Can I use nested if/then for instance name and if yes, what am I missing?? Thanks, --gary
... View more
06-03-2022
11:23 AM
|
0
|
6
|
2510
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-21-2025 08:44 AM | |
| 1 | 02-17-2017 09:43 AM | |
| 1 | 01-22-2021 09:12 AM | |
| 1 | 04-05-2024 12:17 PM | |
| 1 | 08-15-2022 08:24 AM |