|
IDEA
|
@RonnieRichards CreateWebLayerSDDraft is an older function which the arcpy.sharing module now replaces. Can you refer to this sample code on publishing a table? The script publishes both a layer and table in your map, but it should work for tables by themselves too.
... View more
10-28-2022
11:43 AM
|
0
|
0
|
2180
|
|
IDEA
|
Hi @RonnieRichards, It is actually possible to overwrite a hosted table using ArcPy. You'll need to modify the overwriteExistingService property of the sharing draft. See this help topic for more information: https://pro.arcgis.com/en/pro-app/latest/arcpy/sharing/featuresharingdraft-class.htm Please let me know if this works for you. Thanks, Jonah
... View more
10-25-2022
11:54 AM
|
0
|
0
|
2266
|
|
IDEA
|
@feralcatcolonist_old Web browsers don't seem to support switching between a SAML and built-in account, so it probably wouldn't work in Pro either. Switching between a built-in account to another built-in account could potentially be supported.
... View more
10-13-2022
11:55 AM
|
0
|
0
|
6735
|
|
IDEA
|
10-12-2022
11:49 AM
|
0
|
0
|
715
|
|
POST
|
Hi @JamalNUMAN, The Manage Registered Data Stores pane in Pro gives you a view of the data stores in your portal. Once you create them, data stores exist as items in your portal (i.e. Portal Items). For more information, see Manage registered data stores. Best, Jonah
... View more
10-10-2022
08:41 AM
|
1
|
0
|
650
|
|
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
|
587
|
|
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
|
7906
|
|
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
|
2449
|
|
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
|
1569
|
|
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
|
1574
|
|
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
|
3042
|
|
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
|
841
|
|
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
|
3787
|
|
IDEA
|
09-26-2022
08:55 AM
|
0
|
0
|
7167
|
|
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
|
6463
|
| 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 |
a week ago
|