IDEA
|
@JordanCarmona no sorry that was my last job actually. I was just trying to do a simple field list from a given layer but WAB cant do that anyway.
... View more
yesterday
|
0
|
0
|
22
|
POST
|
Well just found my own post.. almost 10 years later and I still need it and it is still not there.
... View more
yesterday
|
0
|
0
|
7
|
IDEA
|
And then 3.3 has a bug where it is not respecting the list of who can publish GP tools so it is limited to admins only. So I still cannot actually fix this. Sigh.
... View more
yesterday
|
0
|
0
|
37
|
POST
|
Then you would need to use selected-at probably. Pull out each value that way, then recombine using concat. I do this and write out the max possibilities. If it is blank just nothing shows. But this may give you trailing commas. This code also gets the label vs the name. Seems like a lot of work just to add a comma though. concat(jr:choice-name(selected-at(${Rash1},0), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},1), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},2), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},3), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},4), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},5), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},6), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},7), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},8), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},9), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},10), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},11), '${Rash1}'), ' - ', jr:choice-name(selected-at(${Rash1},12), '${Rash1}'), ' - ', ${Q1UserNotes})
... View more
Friday
|
0
|
0
|
110
|
POST
|
It may be do to wrapping it in the concat. Some functions do not like that. Try separating the join into its own field then use that field in the concat.
... View more
Friday
|
0
|
2
|
116
|
POST
|
If you have any options to escalate the bug via your support please do. ENH-000130624 and BUG-000146406 : Upper and lower case globalids
... View more
Friday
|
0
|
0
|
15
|
POST
|
You need a 1 to 1 lookup key is all. Right now your csv has no unique lookup key is why you are stuck. Its like going into a room and saying Jamie raise your hand - and 4 people do. But if you say first, middle, and last name then it works. Hope that makes more sense. For you just make a column with all 3 together. Then in your form use a concat field to also combine. Then use this for your lookup. Give it a shot it will probably click on a test.
... View more
Thursday
|
0
|
0
|
45
|
POST
|
Usually using bad field names. You should see little green boxes in any fields it does not like. Posting the form would help.
... View more
Wednesday
|
0
|
0
|
53
|
POST
|
Correct it is ignoring the selection which was a very weird thing to leave out. It has us at a standstill on converting now. Last I heard it was "coming soon" but I still do not see it working.
... View more
Wednesday
|
0
|
0
|
33
|
POST
|
Code for it is not too bad. Excel is prob the easiest. Or even a Dashboard. import os, time
from arcgis.gis import GIS
import tempfile
# Setup inputs
configFile = r"config.txt"
# config format is just FriendlyName,ServiceItemID
backupDir = r""
#--------------------------------------------
# Make a connection to ArcPro
gis = GIS('pro')
# read in the config file for list of HFS for Survey123
BackupAllAGOHFSConfigFile = open(configFile, 'r')
HFSList = BackupAllAGOHFSConfigFile.read().splitlines()
BackupAllAGOHFSConfigFile.close()
for HFS in HFSList:
HFSname = HFS.split(",")[0]
itemId = HFS.split(",")[1] # this now comes from the main AGO page with all the settings.
# Start the export to GDB job
dt = time.strftime("%Y%m%d_%H%M%S")
#out_file = os.path.join(backupDir,"{}_{}".format(HFSname,dt))
out_file = os.path.join(backupDir,"{}_{}.zip".format(HFSname,dt))
print ("Export job started for " + HFSname + dt)
fsLink = gis.content.get(itemId)
result = fsLink.export("export" + HFSname + dt, "File Geodatabase")
# Save to file system
print ("Saving final downloaded FGDB to {}...".format(out_file))
result.download(backupDir, out_file)
# Remove the extracted FGDB from AGOL (cleanup)
print ("Removing the export file from AGOL")
deleteResult = result.delete()
print ("Delete result is " + str(deleteResult))
... View more
Wednesday
|
0
|
0
|
49
|
POST
|
I cannot remember but I think $editcontext.editType was different if they copied an existing point and that messed some stuff up. I would check that.
... View more
Wednesday
|
0
|
0
|
140
|
POST
|
Typically I see people using the Arcade IIf(IsEmpty($feature.observation_number) for example to only calc if empty. But as others posted this all falls apart offline. Also if you have multiple users creating features at the same time (a user adds a feature then spends say 10 minutes filling it out then user 2 starts a add during that time). Coming up with your own id field or using a GUID (or even calc the globalid into a static field) is usually a better way to go. In order to calc at insert into the database only a backend server can do that using attribute rules - but this is not available in AGOL yet (I heard it was coming but have not seen anything lately). As others posted we never do more than one visit to a site in a day so we use a date stamp like this. You could add time to this as well. Concatenate($feature.PointID, "_", text(ToLocal($feature.FieldEvalDate), "Y-MM-DD")) Hope that helps
... View more
Wednesday
|
1
|
1
|
157
|
POST
|
The item page in AGOL will let you download all kinds of formats including JSON. I use it all the time and it works great up to about 10 GB then it gets cranky. I also have a nightly python backup script that backups my AGOL service to GDB. It does about 15 every night. I can even backup by layer to remove attachments and cut the size down. You may be able to do some things with ArcGIS for Sharepoint but not sure there. I would also look into ArcGIS for Excel if you want to see multiple forms and tables all at once. Just make a map of all your forms then in Excel click and they add in. Plus its all live time for updates. You can even edit right there. Hope that helps
... View more
a week ago
|
0
|
0
|
91
|
IDEA
|
Some more info here with ticket numbers https://community.esri.com/t5/arcgis-experience-builder-ideas/related-tables-in-arcgis-web-experience-builder/idi-p/1033962/page/2#comments
... View more
a week ago
|
0
|
0
|
19
|
Title | Kudos | Posted |
---|---|---|
1 | 09-14-2016 01:11 PM | |
1 | 08-29-2024 08:32 AM | |
1 | Wednesday | |
2 | a week ago | |
1 | 3 weeks ago |
Online Status |
Online
|
Date Last Visited |
an hour ago
|