|
POST
|
Hi @JamalNUMAN, If you hover over the the Publish button, there should be a message that explains why it is disabled. Sharing a web feature layer that copies all data to ArcGIS Enterprise requires the privilege to publish hosted feature layers. Please ensure that your member role allows you to publish hosted feature layers. For more information, see the following topics: Configure member roles User types, roles, and privileges Best, Jonah
... View more
10-06-2022
01:29 PM
|
1
|
0
|
777
|
|
IDEA
|
Hi everyone, Just so that you are aware, there are portions of this idea that cannot be supported. Instead, there are also workarounds that might be helpful to know. In the case of SAML/IWA, it is not possible to store credentials for multiple users. We won't be able to support switching between different users in a single Pro session. The design of IWA as an authentication protocol doesn't allow this. (You'll notice that you can't switch between different IWA users in a single web browser session.) However, you can run the ArcPro application as a different Windows user. Pro will be licensed according to the user's licensing method. @rsun_TQB mentioned removing locks in EGDBs. If you are a database administrator, you can remove locks. See Manage geodatabase locks for more info. Best, Jonah
... View more
10-04-2022
11:50 AM
|
0
|
0
|
8405
|
|
POST
|
To expand on @jotaefe_1980 's instruction, here's an example of how to set the sharing settings in the .sddraft file: # Read the .sddraft file
docs = DOM.parse(sddraft_output_filename)
key_list = docs.getElementsByTagName('Key')
value_list = docs.getElementsByTagName('Value')
# Change following to "true" to share
SharetoOrganization = "false"
SharetoEveryone = "true"
SharetoGroup = "false"
# If SharetoGroup is set to "true", uncomment line below and provide group IDs
GroupID = "" # GroupID = "f07fab920d71339cb7b1291e3059b7a8, e0fb8fff410b1d7bae1992700567f54a"
# Each key has a corresponding value. In all the cases, value of key_list[i] is value_list[i].
for i in range(key_list.length):
if key_list[i].firstChild.nodeValue == "PackageUnderMyOrg":
value_list[i].firstChild.nodeValue = SharetoOrganization
if key_list[i].firstChild.nodeValue == "PackageIsPublic":
value_list[i].firstChild.nodeValue = SharetoEveryone
if key_list[i].firstChild.nodeValue == "PackageShareGroups":
value_list[i].firstChild.nodeValue = SharetoGroup
if SharetoGroup == "true" and key_list[i].firstChild.nodeValue == "PackageGroupIDs":
value_list[i].firstChild.nodeValue = GroupID
# Write to the .sddraft file
f = open(sddraft_output_filename, 'w')
docs.writexml(f)
f.close()
... View more
09-29-2022
03:45 PM
|
4
|
1
|
2992
|
|
POST
|
Thanks, Lance. You can actually submit this type of feedback directly through the feedback link on the bottom of the help page. Thanks!
... View more
09-29-2022
02:48 PM
|
0
|
0
|
1981
|
|
POST
|
Hi @LanceCole, Thank you for your question. You actually caught a mistake in our help topic. Once you are in the Select Raster Dataset, you can browse to the raster dataset (not map) that you want to share. We will fix the documentation in the next release. Thanks again, Jonah
... View more
09-29-2022
01:35 PM
|
1
|
2
|
1986
|
|
POST
|
Hi @AshadAlif1, You can use the Upload Service Definition tool to set the sharing settings. There is also a way to set sharing in the sddraft by modifying the XML file. We are working on documenting how to do this in the help topics at an upcoming release. Best, Jonah
... View more
09-28-2022
01:44 PM
|
1
|
2
|
3801
|
|
IDEA
|
Hi @MDB_GIS, Thank you for taking the time to post this idea. Our teams have previously decided that supporting the ability to publish and overwrite web layers in a system geoprocessing tool would be technically infeasible. Please see this post for more information. Because of this, our hope was that the blog article would give users a head start on automating their sharing workflows, regardless of their familiarity with Python. If you have any feedback on how to improve the content in the blog or help documentation, we would love to hear it. Best, Jonah
... View more
09-28-2022
08:27 AM
|
0
|
0
|
977
|
|
IDEA
|
Thank you @PatriceLabbé and @SimonP for the idea and feedback. This functionality is something we might be able to support. We will keep an eye on this to see if there is additional interest from the community.
... View more
09-26-2022
09:35 AM
|
0
|
0
|
4447
|
|
IDEA
|
09-26-2022
08:55 AM
|
0
|
0
|
7666
|
|
POST
|
If you didn't assign layer IDs, the layer you share are automatically assigned IDs based on drawing order in the Content pane. When layers are added, removed, or reordered, their IDs change accordingly. We recommend assigning layer IDs so that you have control over them, preventing them from being changed.
... View more
09-21-2022
03:58 PM
|
0
|
1
|
7470
|
|
POST
|
First, enable Allow assignment of unique numeric IDs for sharing web layers. The Layer ID text box in layer properties will appear.
... View more
09-21-2022
03:35 PM
|
1
|
3
|
7474
|
|
IDEA
|
@MatthewLawson1 Just to add, you can sign out of your active portal, manage your portal connections, or switch your active portal. Your active is the portal you share/publish to or access content from. Under Portals, you can add multiple ArcGIS Online and ArcGIS Enterprise portal connections in Pro. The green check mark is next to the active portal. Is there anything we could improve in the UI? We want to ensure that all users know that they can add and manage multiple portal connections in Pro.
... View more
09-21-2022
12:13 PM
|
0
|
0
|
7714
|
|
IDEA
|
@MatthewLawson1 You don't need to delete a portal connection to authenticate a different user; you can sign out of one account and sign in to another. There was a recent request to add an option to switch users. Can you confirm that this is the same functionality you would like to see implemented? If so, this idea can be merged. Here is the idea: https://community.esri.com/t5/arcgis-pro-ideas/switch-user-option/idi-p/1209863
... View more
09-21-2022
07:50 AM
|
0
|
0
|
7733
|
|
IDEA
|
Thank you all for sharing more details about this request. We will continue to evaluate this. I'm changing the status to Open to allow others to add their votes. Please continue to share any additional feedback you may have. Thank you!
... View more
09-21-2022
07:42 AM
|
0
|
0
|
8489
|
|
POST
|
Hello, What you have described is not a bug in ArcGIS Pro. It sounds like you are encountering error 00374: Unique numeric IDs are not assigned. The error was intentionally added to prevent you from sharing or overwriting web layers before assigning IDs to layers or tables in your map. If static IDs are not assigned that match existing service sublayer IDs, the IDs may change as you observed. If you overwrite your service, this may break web maps and other web apps using the service. (This is the situation you described with the broken apps and dashboards.) The solution here is to assign static layer IDs to your layers and tables that match existing service IDs. You can read more about this in the help topic, Assign layer IDs. Best, Jonah
... View more
09-20-2022
04:02 PM
|
1
|
5
|
7494
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-13-2024 01:39 PM | |
| 1 | 06-03-2024 09:21 AM | |
| 1 | 05-06-2024 07:20 AM | |
| 1 | 10-24-2023 09:32 AM | |
| 2 | 05-04-2023 03:40 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|