|
POST
|
To add another option to @JakeSkinner ones: I sometimes prefer to overwrite with the empty feature service from ArcGIS PRO so that also the ObjectID will be wiped. BUT This is not an option if this is the only layer you have and you have already set a symbology or pop up in the map, otherwise you will lose also that. Furthermore, do not do it if you have added fields in ArcGIS Online.
... View more
08-03-2021
06:14 AM
|
1
|
1
|
5769
|
|
POST
|
Hi @IanGallo , thank you for all your input in my post: I could manage to create perfect URL on my map's pop-ups. Still I am trying to work on opening the Survey I need from "Survey at assignment" and open an inbox element, which I believe is exactly what you are looking for here. I found something that Ideally would work, and I am asking @CraigGillgrass to have a look at it too: 🙄 In the assignment integration table I used this URL: https://survey123.arcgis.app?itemID=<itemID>&action=edit&filter=globalId:{GlobalID} if I leave the URL as is, of course Survey123 will open and say that it cannot find anything. BUT, if I copy an existing GlobalID from my asset feature Service, it opens exactly at that feature, this will allow me to have all the static info (name of the location, number of account.....) and it let me input my inspection on the repeat. Of course I need this field to be dynamic, and that Asset GlobalID when you click on the feature and click on "Create assignment" has to be copied in the assignment table as e.g. AssetGUID. Then this URL would hopefully work: https://survey123.arcgis.app?itemID=<itemID>&action=edit&filter=globalId:{assignment.AssetGUID} Craig, am I saying something that is possible to achieve? Thanks!
... View more
07-23-2021
07:43 AM
|
0
|
1
|
2317
|
|
POST
|
Hi @IanGallo thank you for your input. I am still confused, so I describe what I did. According to your suggestion: I created the URL and I configured the pop up for the feature layer as: https://survey123.arcgis.com/share/<itemID>?mode=edit&globalId={GlobalID} ---> it works when I click on the feature. I also tried with https://survey123.arcgis.app/?itemID=<itemID>&globalId={GlobalID} --> and the app doesn't open to the right survey. ------- The issue with the above method is that the survey is linked to the feature and not the assignment. I tried to modify the URL Template in the Assignment Integrations table to: https://survey123.arcgis.app/?itemID=<itemID>&globalId={GlobalID} (actually insted of {GlobalId} I tried to find a way to link to the feature's GlobalId but nothing worked. like nameOfTheFeature.GlobalID) What I would like to get is: Click on the assignment. Start the assignment Click on Survey at assignment and get the form opened Thanks!
... View more
07-22-2021
08:26 AM
|
0
|
1
|
2304
|
|
POST
|
Hi! I have a Survey created in Connect that collects info about water meter conditions in a property. - Feature Class: point, with a number of static info like address, account number, Water meter number..... - Related table (via GUID) 1:M - Account number and water meter number are copied from the main feature via Survey, date of inspection, and conditions.... On the Survey inbox works like a charm. On Workforce: The problem is that, whenever I create a new assignment, and I open it on Workforce mobile, survey123 opens, and I collect info. when i check my data , I realize that I've created a new point completely unrelated from the existing one. The only info I pass from Work force to Survey123 is the location name, (but to be honest I don't understand exactly how the "Pass info" should be used in a proper way.) I don't need to modify anything in the feature point, just the inspection table. Am I doing something wrong (any documentation?) Or there is still no way to integrate properly the two apps? Thank you for any feedback! 😊
... View more
07-21-2021
08:37 AM
|
0
|
5
|
2414
|
|
POST
|
hi @JasonCyphers I am replying just because I have (exactly) your issue. since you post wasn't noticed, let's see if my reply moves the post on the top of the list. BTW, have you ever solved this? Thanks!
... View more
07-21-2021
07:48 AM
|
0
|
0
|
1026
|
|
POST
|
Hello! I am consuming way too many credits. I need to delete services but for many of those services I cannot say if a web application was created. So, I am not able to know whether I can safely delete it. Is there a way I can know how many web maps and app are using that service? Thanks!
... View more
07-14-2021
03:58 AM
|
0
|
2
|
1255
|
|
POST
|
hi @JamesTedrick , thank you for your reply. From the article linked above, I did not see ant squared brackets. Anyway, after your post I tried the following with no luck: Originally, it was this: {"attributes" : { "OBJECTID" :{{1.feature.result.objectId}}, "CaseNO" : {{1.feature.result.objectId}} }} I added squared, but it didn't work [ {"attributes" : { "OBJECTID" :{{1.feature.result.objectId}}, "CaseNO" : {{1.feature.result.objectId}} }} ] then I tried, [ "attributes" : { "OBJECTID" :{{1.feature.result.objectId}}, "CaseNO" : {{1.feature.result.objectId}} } ] also [ "attributes" : { "OBJECTID" :{{1.feature.result.objectId}}, "CaseNO" : {{1.feature.result.objectId}}, "Name": "Jeen Doe" }] and [ {"attributes" : { "OBJECTID" :{{1.feature.result.objectId}}, "CaseNO" : {{1.feature.result.objectId}}, "Name": "Jeen Doe" }} ] I have no idea.
... View more
06-28-2021
07:53 AM
|
0
|
0
|
1416
|
|
POST
|
Amazing! It worked. As soon as I have time I will review it carefully. I need to understand better how statements work. Thank you!!!
... View more
06-25-2021
08:48 AM
|
0
|
0
|
1430
|
|
POST
|
Hello! I am trying to make things work on a complex system of forms. Based on the same feature service I have different forms. 2 of them are involved in the following: Form 1. according to the priority the status is defined: Status= if(${Priority} ='Low', 'Pending', if(${Priority}='Medium', 'Pending' , if(${Priority} ='High', 'Pending', if(${Priority}='Critical', 'Pending', if(${Priority}='None','Closed/Rejected', 'Queue'))))) Form 2. once the work is done here the question: "Would you like to close the case?" change the Status into 'Ready for vetting' Once the status changes the person has to reopen Form 1 and answer the question: "Do you accept the solution?" has to reply yes or no and the status would change into yes = 'Settled' no = back to 'Pending' in order to achieve so I added something to the end of my first if statement to get this: Status = if(${Priority} ='Low', 'Pending', if(${Priority}='Medium', 'Pending' , if(${Priority} ='High', 'Pending', if(${Priority}='Critical', 'Pending', if(${Priority}='None','Closed/Rejected', if(${Accepted}='Yes','Settled', if(${Accepted}='No','Pending', 'Queue'))))))) no errors in the statements but when I reopen the form and set either yes or no to the Action question, the status goes to 'Pending' no matter what. It is clear to me that there is a conflict and the {Priority} settings are honored and the {Accepted} is ignored. any idea on how I could make this work? I think I should insert AND somehow, I am trying but I keep on getting errors. Thanks!
... View more
06-25-2021
05:57 AM
|
0
|
3
|
1473
|
|
POST
|
Hello everyone, - I created a form with double language. - The dateTime field is set as default now() [but I tested with a black field and it is the same] - The issue occurs only on Web Form is this a bug? Thanks! This is the appearance when I open the Web Form: I change language and this is the result: the more I switch, the more field are added: I removed the default now() but nothing has changed.
... View more
06-15-2021
02:34 AM
|
0
|
1
|
1123
|
|
POST
|
Hi guys, I am trying to figure out why my Integromat webhook works without errors but I cannot see my value updated in the table. I followed the instructions of Ismael on this post: Survey123 Tricks of the Trade: Integromat - Esri Community (I also recreated the same scenario as the one with the Temperature field updated from the Weather service, but I got the same "error"). the problem is that I don't get any error. The value just doesn't update. Is there anyone that is able to see what I am missing? thanks!!!
... View more
05-24-2021
02:41 AM
|
0
|
2
|
1527
|
|
BLOG
|
Hi @IsmaelChivite , @JamesTedrick Thank you for your help first of all, you are amazing! I need to understand where I am wrong, I am testing this: copy a field into another field. Originally was the objectID (which is still my primary concern) then I started to test with any other field (String) and although everything looks fine my field is still empty: Thanks!
... View more
05-19-2021
08:57 AM
|
0
|
0
|
9857
|
|
POST
|
Hi @YuliaMamonova I thought you answer would have solved my issue but not. here is my http module. everything looks fine but after I send the survey the field is still empty. do you see any error? thanks!
... View more
05-17-2021
07:02 AM
|
0
|
1
|
4334
|
|
POST
|
Hi, I created a filter on a layer that has worked for months with the following parameters: My dashboard needs to show the last data input. Yesterday I realized that it was not working. I had No data in my Dashboard. Then I changed into Last Positive is 15/04/2021 and it works, meaning that the data is ok but there is something wrong with the filter @KellyGerrow are you aware of any change? thanks!
... View more
04-15-2021
06:53 AM
|
0
|
1
|
645
|
|
POST
|
Unfortunately I don't think so, I keep on struggling with sizing: every time that a value changes my dashboard is a mess.😑 Unless something has been done on the new Dashboard Beta.
... View more
04-06-2021
03:06 AM
|
0
|
0
|
4940
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-04-2025 08:07 AM | |
| 1 | 12-18-2020 02:18 AM | |
| 1 | 01-30-2017 08:08 AM | |
| 1 | 11-08-2024 12:38 AM | |
| 1 | 11-27-2023 08:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|