|
POST
|
We have seen this also and found no way around it. It drives us nuts. Never seen any Arc product order alphabetically before. We put a lot of time into the order (which is not easy to do in Arc) so its weird.
... View more
12-17-2025
01:43 PM
|
0
|
0
|
546
|
|
BLOG
|
Yes that is the button but the issue is I have no Map Data tab show up. How do i get it to turn on? thanks
... View more
12-17-2025
06:37 AM
|
0
|
0
|
886
|
|
BLOG
|
Oh well I was really just looking for a refresh button. How do I do that to update the table in excel? thanks
... View more
12-15-2025
01:40 PM
|
0
|
0
|
909
|
|
POST
|
They are probably preopening the forms in the office before they go out knowing there may not be signal. I would track down the users where you see this and ask them. Also make sure they are not wifi only iPads.
... View more
12-11-2025
12:39 PM
|
2
|
0
|
543
|
|
POST
|
I use this for AGOL services so it should work fine. You will need ArcPro installed and logged into AGOL. Get a Python editor - I use PyScripter. Change the itemid to that of your service. Get this from the AGOL page. Run it You can also view this manually by going to the item page of the service. Then bottom right you will see a link to the REST service page. Click that and it opens a text based interface. Look for Replicas at the bottom and in there you can get a list. Replicas are what Arc uses to checkout data onto the tablet. What you are asking is a bit advanced but you should see it if you poke around. Hope that helps
... View more
12-03-2025
02:18 PM
|
0
|
1
|
1094
|
|
POST
|
I have this script that works. Gives user, last sync, etc. I use it to find old replicas to delete since Field Maps has a bug for some time now where any replica removed while offline gets orphaned. Just make sure Pro is logged in. Does not have to be open just in. Hope that helps import arcpy
from arcgis.gis import GIS
import arcgis
from arcgis.features import FeatureLayerCollection
gis = GIS('pro')
#gis = arcgis.GIS(profile_name=profile)
#itemID of service
itemID = "acbb9fa63afdafc9fsd0b16"
item = gis.content.get(itemID)
flc = FeatureLayerCollection.fromitem(item)
replicas = flc.replicas.get_list()
print ("ReplicaOwner,ReplicaName,ReplicaID,CreateDate,LastSyncDate")
for r in replicas:
replica = flc.replicas.get(r['replicaID'])
create_date = datetime.datetime.fromtimestamp(replica['creationDate'] / 1000)
last_sync_date = 'n/a' # don't trust this to always be populated
if type(replica['lastSyncDate']) is int:
last_sync_date = datetime.datetime.fromtimestamp(replica['lastSyncDate'] / 1000)
... View more
12-03-2025
10:56 AM
|
3
|
3
|
1113
|
|
POST
|
Same issue here but the issue seems to be more with new map viewer. It "touches" every single layer at load where old map viewer did not. Test old and new map viewer to see if that is it first.
... View more
12-02-2025
12:02 PM
|
0
|
0
|
756
|
|
POST
|
Trying to remember now but changing from dynamic to fixed grid may do it. Its on the settings sheet.
... View more
12-01-2025
02:23 PM
|
0
|
0
|
417
|
|
POST
|
What I do in my 123 form is have the Code as the name and CODE Scientific Name Common name as the label. This way users can search on and of the 3 they know. Only the code stores but you can flip back and form via the domains created. Works slick. I would think you could do something similar in Field Maps. Just an idea
... View more
11-26-2025
06:23 AM
|
1
|
0
|
332
|
|
POST
|
No its not possible due to the underlying architecture. Each "page" must have a unique field name per cell so it can draw and place the data. Repeats only work because you are flipping "pages". But the new app built on .Net does have the option to have repeats as a table. It is still beta but you can check it out via https://earlyadopter.esri.com/
... View more
11-26-2025
06:16 AM
|
0
|
2
|
562
|
|
POST
|
If I am reading this right I think you want Choice Filters https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-choice-filters/ba-p/894046 Hope that helps
... View more
11-25-2025
08:12 AM
|
1
|
1
|
536
|
|
POST
|
@PancovaMarketa Thanks for posting. Not sure why it took 5 years to get a bug logged I thought it was on the list when I reported in 2019. I talked to the Pro team about it directly also.
... View more
11-25-2025
08:11 AM
|
0
|
0
|
397
|
|
POST
|
No there is no way. But if you long press the right repeat arrow it brings you right to the end. So it helps
... View more
11-24-2025
02:05 PM
|
1
|
1
|
588
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 2 | 04-10-2026 11:25 AM | |
| 1 | 04-09-2026 02:37 PM | |
| 1 | 04-07-2026 08:33 AM | |
| 2 | 03-23-2026 03:44 PM |
| Online Status |
Offline
|
| Date Last Visited |
8 hours ago
|