|
POST
|
Hi @AlanSS , You cannot use a dynamic content as list name but as @DougBrowning also mentioned in previous comment, you should be able to achieve this by using choice filters and cascading selects. You can use the sample survey that is available in Connect (also an edited version is attached to this post) to see how it works and if it could be a workaround for you. Best, MJ
... View more
02-26-2021
10:15 AM
|
0
|
0
|
4348
|
|
POST
|
Hi @KristalMclean , Although this is an old post but since other users has reported the same issue, I wanted to share an update here that may help identifying the issue. If you have a date field with certain formats in the pop up for a layer in your web map, you may get an error ('invalid call with current token type') when trying to open the map in New Collector and Field Maps while it works fine in Collector Classic. One example is the following format: "datePattern": "MMMM d, y" You can check the format of your date fields in the pop ups by looking at the JSON for the web map using AGO Assistant. If you saw a format like what mentioned above, you can change it to "dateFormat": "shortDateLongTime" to resolve the issue. Alternatively, you can pen popup configuration > Configure Attributes > change the display format for your date field and save the map. A bug has been logged against this behavior: Synopsis: Opening a web map in new Collector and Field Maps app fails with error 'invalid call with current token type' when the map contains a layer with a date field with a date format "datePattern": "MMMM d, y" All the best, MJ
... View more
02-16-2021
10:56 AM
|
0
|
2
|
2502
|
|
POST
|
Hi, Unfortunately, currently it is not possible to add data directly from SharePoint to ArcGIS Pro. This has been submitted on Ideas page and also, there is an existing enhancement request to add this capability: https://community.esri.com/t5/arcgis-pro-ideas/add-data-directly-from-microsoft-sharepoint-in-arcpro/idi-p/936952 ENH-000132866: Provide the ability to add data directly from Microsoft Sharepoint in ArcPro. Best, MJ
... View more
01-22-2021
08:57 AM
|
6
|
3
|
9171
|
|
POST
|
Hi, I know this is an old post but still thought I would share an alternative way to delete an AGOL public account. As @BenCoubrough mentioned, you can send an email to accounts@esri.com and request to delete your account. However, your username will not become available to use for another account. In order to fully delete your public account you can follow the steps below: Delete all your content and groups from your public account. Use your existing organizational account (or create a trial organizational account) to invite yourself as a member. In order to do this, you should have proper privileges. Make sure to choose the option to let users join with their existing public account. Once you accepted the invitation and joined the org, you basically converted your public account into an organizational account (temporarily)! Now log in with your original organizational account (with admin privileges), disable Esri access for the new member you added in step 2 and delete the member. By doing this, not only the member is removed from the organization but also the account is completely removed from AGOL and the username is available to use again. Notice that if Esri Access is enabled, deleting user from the org only converts it back to a public account. Best, MJ
... View more
01-22-2021
07:01 AM
|
1
|
1
|
7157
|
|
POST
|
Hi @JenniferStarbuck1 , There is an enhancement request to add this capability to Collector app which hasn't been implemented yet. ENH-000124267: Allow attachments to be stored on an SD card in Collector for ArcGIS Best, MJ
... View more
11-25-2020
06:42 AM
|
0
|
0
|
1143
|
|
POST
|
Hi @ChrisMatechik , Based on what you explained, it is possible that those users have been invited to your organization's MyEsri with their public accounts. If that's the case, you won't be able to invite them to groups in AGOL and share content with them. Basically, in order to share content with other users in AGOL, they should have the same account type as you (organizational account vs. public account), but they don't necessarily need to be a member of your organization. You are able to invite members to your group from other organization (as long as their account type allows). In order to do this, you need to invite them as members to your organization in ArcGIS Online. This requires available licenses for each member that you want to add to your org. Once they get invited, they have the option to create a new organizational account, or convert their existing public account to an organization account (while becoming a member in your organization). Once they joined your org in AGOL (and not just MyEsri) you should be able to add them to your groups as members. https://doc.arcgis.com/en/arcgis-online/administer/invite-users.htm The post linked below explains more differences between MyEsri and AGOL: https://community.esri.com/t5/education-blog/what-is-the-difference-between-my-esri-and-arcgis-accounts/ba-p/892854 All the best, MJ
... View more
11-24-2020
10:54 AM
|
2
|
0
|
2957
|
|
POST
|
It is possible to clone a Story Map (or a feature layer, map, app, etc.) from one AGOL account to another using a Python script. This will create a copy of the Story Map with uploaded images in your AGOL account. However, it may not copy other dependent items such as web maps. This workflow is explained in more details in the article linked below: How To: Copy/clone content from one ArcGIS Online organization or Portal for ArcGIS to another from arcgis.gis import GIS gis1 = GIS("https://arcgis.com", 'USERNAME','PASSWORD') gis2 = GIS("https://arcgis.com", 'USERNAME', 'PASSWORD') items = gis1.content.search(query='id:ITEM_ID', sort_field='id', sort_order='desc') print(str(len(items)) + " items will be cloned. See the list below:") items def deep_copy_content(input_list): for item in input_list: try: print("Cloning " + item.title) copy_list = [] copy_list.append(item) gis2.content.clone_items(copy_list, copy_data=True, search_existing_items=True) print("Successfully cloned " + item.title) except Exception as e: print(e) print("The function has completed") deep_copy_content(items) All the best, MJ
... View more
11-06-2020
06:03 AM
|
2
|
0
|
5749
|
|
POST
|
It is possible to clone a Story Map (or a feature layer, map, app, etc.) from one AGOL account to another using a Python script. This will create a copy of the Story Map with uploaded images in your AGOL account. However, it may not copy other dependent items such as web maps. This workflow is explained in more details in the article linked below: How To: Copy hosted feature services (including data) from one ArcGIS Online organization to another from arcgis.gis import GIS gis1 = GIS("https://arcgis.com", 'USERNAME','PASSWORD') gis2 = GIS("https://arcgis.com", 'USERNAME', 'PASSWORD') items = gis1.content.search(query='id:ITEM_ID', sort_field='id', sort_order='desc') print(str(len(items)) + " items will be cloned. See the list below:") items def deep_copy_content(input_list): for item in input_list: try: print("Cloning " + item.title) copy_list = [] copy_list.append(item) gis2.content.clone_items(copy_list, copy_data=True, search_existing_items=True) print("Successfully cloned " + item.title) except Exception as e: print(e) print("The function has completed") deep_copy_content(items) All the best, MJ
... View more
11-06-2020
06:02 AM
|
1
|
1
|
4031
|
|
POST
|
Jevita Webster Hi, I know it's an old post you hopefully where able to resolve the issue using the solution suggested by James Tedrick, I thought I would post this article here that provides instructions for this workflow in both Microsoft Power Automate and Integromat for reference: How To: Reformat the ArcGIS Survey123 date and time questions in an email notification designed in Microsoft Power Autom… All the best, MJ
... View more
11-04-2020
05:57 AM
|
0
|
0
|
1342
|
|
POST
|
Bryn Morris-hale Hi, In this workaround, you are basically using your category field to sort by using domains. You can not use a field as category field and use a different field to sort categories on the chart. You need to create domains for the "AgeBand" field and make sure that numeric values are assigned as codes (not labels). All the best, MJ
... View more
11-03-2020
05:03 AM
|
0
|
0
|
1382
|
|
POST
|
Hi Jason, I know that you mentioned that the error happens only when you have attachments on the form. But I just wanted to share my experience with this error in the past that might be helpful. Survey123 usually throws this error when there is a mismatch between the field type/length in the feature layer and the values from the survey form. For instance, if you have a decimal value in a question that is writing into an Integer type field, it fails to send the form. One way to test this is by population all survey questions with "1" and try to submit. "1" is special because it fits different field types (such as String, Integer, and Double). It is also important to look for any hidden question that may not show up on the form but gets populated by a calculation expression. Make sure that the values being calculated in hidden questions match the field type for those questions in the feature service attribute table. All the best, MJ
... View more
10-29-2020
03:24 PM
|
1
|
0
|
5513
|
|
POST
|
Hi Keith Gerhartz, I ran some tests and I was able to confirm that custom point marker on geopoint question does not appear in web form as it reverts back to the default symbol. However, in the field app, it shows up as it appears in Connect preview. Best, MJ.
... View more
10-09-2020
12:49 PM
|
4
|
0
|
3030
|
|
POST
|
Hi Jon Tait If your surveys don't show up in the drop-down list, check your connection to your Survey123 account to make sure it is still valid. If not, you may need to create a new connection. See the link below: Problem: The drop-down list does not display surveys in the Survey123 for ArcGIS trigger in Microsoft Power Automate Best, MJ
... View more
10-08-2020
01:03 PM
|
2
|
2
|
10975
|
|
POST
|
You can export a tpk from Esri basemaps and include it in your MMPK. The post linked below provides step by step instructions: https://community.esri.com/community/gis/applications/arcgis-pro/blog/2018/06/30/using-arcgis-pro-22-to-put-the-esri-world-imagery-basemap-in-a-mobile-map Best, MJ
... View more
10-02-2020
11:12 AM
|
0
|
0
|
3393
|
|
POST
|
Enabling sync for the hosted feature layer will add a GlobalID field to the hosted feature layer.
... View more
10-01-2020
11:20 AM
|
30
|
3
|
8689
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 05-03-2024 09:47 AM | |
| 1 | 02-17-2022 12:55 PM | |
| 2 | 05-03-2024 09:47 AM | |
| 2 | 06-09-2022 06:34 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|