<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1161423#M64286</link>
    <description>&lt;P&gt;Looks like this is still an issue in Pro 2.9.2&lt;/P&gt;&lt;P&gt;I also get an OSError when calling aprx.save() in my script to replace project data sources&lt;/P&gt;&lt;P&gt;Any word from Esri about this?&lt;/P&gt;</description>
    <pubDate>Tue, 05 Apr 2022 23:31:44 GMT</pubDate>
    <dc:creator>greg_eam</dc:creator>
    <dc:date>2022-04-05T23:31:44Z</dc:date>
    <item>
      <title>project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1119713#M63045</link>
      <description>&lt;P&gt;I have a code that a developer created that no long works for me.&amp;nbsp; With a recent upgrade from 2.8.x to 2.9, the script no errors out at a line " project_service_aprx_object.save()".&amp;nbsp; What I believe the code is trying to do update the source of feature layers in a map ("1_Service_Status_On").&amp;nbsp; However, when it comes to the&amp;nbsp; project_service_aprx_object.save() line, it gives me the following error:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "&amp;lt;string&amp;gt;", line 686, in &amp;lt;module&amp;gt;&lt;BR /&gt;File "A:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\_mp.py", line 285, in save&lt;BR /&gt;return convertArcObjectToPythonObject(self._arc_object.save(*gp_fixargs((), True)))&lt;BR /&gt;OSError: G:\SDE_User_Connections\Projects\UnitedStates\US_Test01\Web_Services\Test01_Project_Services.aprx&lt;/P&gt;&lt;P&gt;I'm running the code in an empty APRX file so I don't even have the&amp;nbsp;Test01_Project_Services.aprx open.&amp;nbsp; I'm a novice at python so any I can provide more of the code if necessary.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 22:26:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1119713#M63045</guid>
      <dc:creator>Min-DongChang</dc:creator>
      <dc:date>2021-11-23T22:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1119783#M63047</link>
      <description>&lt;P&gt;project folder/files access permissions?&amp;nbsp;&lt;BR /&gt;I would try to do manually in Pro what they code is trying to do, you might get more descriptive error message.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 04:21:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1119783#M63047</guid>
      <dc:creator>IhabHassan</dc:creator>
      <dc:date>2021-11-24T04:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1121562#M63109</link>
      <description>&lt;P&gt;Ihab thanks for responding, my user has admin rights to all the project folders.&amp;nbsp; Also I'm not sure why it's still referencing the default python library.&amp;nbsp; In Pro, I cloned the default python library and use it as the default library, which is saved on the C: drive.&amp;nbsp; One other note is that the code was written in python 2.7.16.&amp;nbsp; Not sure if that makes a difference.&amp;nbsp; These are the lines to the line 686 error:&lt;/P&gt;&lt;P&gt;for project_service_map_object in project_service_map_list:&lt;BR /&gt;if project_service_map_object.name == r"1_Service_Status_On":&lt;BR /&gt;print("Captured -- " + project_service_map_object.name)&lt;/P&gt;&lt;P&gt;print("Creating a List of Layers in " + project_service_map_object.name)&lt;BR /&gt;project_service_layers_list = project_service_map_object.listLayers("*")&lt;/P&gt;&lt;P&gt;print("Updating Data Source for All Layers in the 1_Service_Status_On Map")&lt;BR /&gt;for layer in project_service_layers_list:&lt;BR /&gt;if not (layer.isGroupLayer or layer.isBasemapLayer):&lt;BR /&gt;print("Before: " + str(layer.name))&lt;BR /&gt;pprint.pprint(layer.connectionProperties)&lt;BR /&gt;layer.updateConnectionProperties(&lt;BR /&gt;current_connection_info=project_energizer_sde_workspace,&lt;BR /&gt;new_connection_info=p_userconnection_workspace_full_path,&lt;BR /&gt;auto_update_joins_and_relates=True,&lt;BR /&gt;validate=True,&lt;BR /&gt;ignore_case=True)&lt;BR /&gt;project_service_aprx_object.save()&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 02:51:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1121562#M63109</guid>
      <dc:creator>Min-DongChang</dc:creator>
      <dc:date>2021-12-01T02:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1128869#M63343</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm into this too. We are running and uploading analysis from the past year every single day. Today decided to upgrade ArcGIS PRO to 2.9 version, and now i'm getting this error in all my scripts, every time when i run&amp;nbsp; "aprx.save()". There is a way to downgrade to 2.8 version, i need this stuff working has it was in the past year.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Dec 2021 22:55:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1128869#M63343</guid>
      <dc:creator>HenriqueJoner</dc:creator>
      <dc:date>2021-12-26T22:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1141065#M63671</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm having the same problem and it has nothing to do with access permissions or anything else. I run the same python in two computers that deal with the same files in our internal network. The one with the Pro 2.7 works and the one with the Pro 2.9 doesn't.&lt;/P&gt;&lt;P&gt;Besides, you don't need much code to show the problem. Two lines are enough to make the python crash:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;# p_Pro_project is the path of an existing project&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;o_Pro_project&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;mp&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ArcGISProject&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;p_Pro_project&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;o_Pro_project.save()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any ESRI people can confirm the bug or the "by design feature"? It would be nice at least to hear a YES or a NO.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Marcelo&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 06 Feb 2022 17:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1141065#M63671</guid>
      <dc:creator>MarceloRosensaft</dc:creator>
      <dc:date>2022-02-06T17:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142758#M63711</link>
      <description>&lt;P&gt;I am experiencing this same issue.&lt;/P&gt;&lt;P&gt;I try to save an aprx after loading some layouts using:&lt;/P&gt;&lt;P&gt;aprx.save()&amp;nbsp;&lt;/P&gt;&lt;P&gt;and then I get the error.&lt;/P&gt;&lt;P&gt;File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\_mp.py", line 285, in save&lt;BR /&gt;return convertArcObjectToPythonObject(self._arc_object.save(*gp_fixargs((), True)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ESRI please advise. Are we doing something wrong?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 18:12:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142758#M63711</guid>
      <dc:creator>ChrisZumwalt</dc:creator>
      <dc:date>2022-02-10T18:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142791#M63713</link>
      <description>&lt;P&gt;My Current work around is to use&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;aprx.saveACopy()&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 10 Feb 2022 19:01:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142791#M63713</guid>
      <dc:creator>ChrisZumwalt</dc:creator>
      <dc:date>2022-02-10T19:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142853#M63715</link>
      <description>&lt;P&gt;Yep. aprx.save() throws an OSError for me, every single time. v. 2.9&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 20:54:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142853#M63715</guid>
      <dc:creator>NicholasRolstad2</dc:creator>
      <dc:date>2022-02-10T20:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142866#M63716</link>
      <description>&lt;P&gt;I will second this workaround! I had a similar issue where aprx.save() threw an OSerror, which began after we upgraded from ArcPro 2.8.3 to 2.9.1. We also had the same error on thrown on a GP service after upgrade from arcgis enterprise 10.8.1 to 10.9.1. altering the code to aprx.saveACopy() resulted in normal functionality on both pro and enterprise/server. Thanks for the tip!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 21:35:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1142866#M63716</guid>
      <dc:creator>JoeLemeris</dc:creator>
      <dc:date>2022-02-10T21:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1161423#M64286</link>
      <description>&lt;P&gt;Looks like this is still an issue in Pro 2.9.2&lt;/P&gt;&lt;P&gt;I also get an OSError when calling aprx.save() in my script to replace project data sources&lt;/P&gt;&lt;P&gt;Any word from Esri about this?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 23:31:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1161423#M64286</guid>
      <dc:creator>greg_eam</dc:creator>
      <dc:date>2022-04-05T23:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1161549#M64289</link>
      <description>&lt;P&gt;Following up from my previous response to a post in this thread: a bug has been created for this issue, i received a notification a few weeks ago: in addition to adding the del statement they suggest, we found success just using aprx.saveACopy() instead of aprx.save().&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;BUG-000145915 - An OSError message is returned when using the ArcGIS Pro project's Save function in the Python window.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Current Information:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Status: Known Limit.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Public Explanation: This is a read/only issue. They reference project A, saveACopy to Project B, then try to reference Project B and save. BUT project B is already "open" in memory.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/bugs/nimbus/QlVHLTAwMDE0NTkxNQ==" target="_blank"&gt;https://support.esri.com/en/bugs/nimbus/QlVHLTAwMDE0NTkxNQ==&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;By adding the "del aprx_template" statement below, I believe the issue is addressed.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Workaround: Add the 'del aprx_template' statement.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 13:46:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1161549#M64289</guid>
      <dc:creator>JoeLemeris</dc:creator>
      <dc:date>2022-04-06T13:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1163880#M64339</link>
      <description>&lt;P&gt;I have the same issue and have been using saveACopy() as a workaround for now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 13:41:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1163880#M64339</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-04-13T13:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1175649#M64592</link>
      <description>&lt;P&gt;Seeing this as well in a GP tool.&amp;nbsp; After updating some layout elements we save the aprx.&amp;nbsp; Getting an OSError as reported above 2.9.2 and persists in 2.9.3 (also no relevant bug fix listed in the release notes for 2.9.3).&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2022 17:48:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1175649#M64592</guid>
      <dc:creator>JustinReynolds</dc:creator>
      <dc:date>2022-05-19T17:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1187187#M64848</link>
      <description>&lt;P&gt;Ran into the same issue in 2.9. It's happening because you still have a reference to the object. Make sure to call&amp;nbsp;&lt;STRONG&gt;del aprx&amp;nbsp;&lt;/STRONG&gt;every time you're done with the object so it gets garbage collected. And this is also why saveACopy works because you get a new reference to a new object. With a lot of calls to saveACopy, you can run into a memory leak issue. See code below for example:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# this works fine
for i in range(3):
    aprx = arcpy.mp.ArcGISProject(PRO_PROJECT_PATH)
    aprx.save()
    del aprx

# this fails after the first run
for i in range(3):
    aprx = arcpy.mp.ArcGISProject(PRO_PROJECT_PATH)
    aprx.save()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark as resolved if this solves your problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 08:59:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1187187#M64848</guid>
      <dc:creator>codergrl</dc:creator>
      <dc:date>2022-06-28T08:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1198595#M65149</link>
      <description>&lt;P&gt;I've ran into this bug after upgrading from 2.8.x to 2.9.x.&amp;nbsp; Using the&amp;nbsp;saveACopy(aprxPath) workaround worked for me as well.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 15:50:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1198595#M65149</guid>
      <dc:creator>MichaelMorisette</dc:creator>
      <dc:date>2022-08-02T15:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1210779#M65513</link>
      <description>&lt;P&gt;This is still present in 3.x. Note if you have any references to objects in the project you will get this error. So you may also need to cleanup any references to maps, layouts, etc. Not only the project object.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 15:03:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1210779#M65513</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-09-08T15:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1222638#M65872</link>
      <description>&lt;P&gt;I was encountering the same issue. However, all solutions above did not work for me. Turns out, my issue was that I had somehow corrupted my .aprx project file through previous (and albeit numerous!) script test cycles. Once I deleted the corrupted .aprx and replaced that file with a backup copy of itself, the script proceeded to save the .aprx as expected.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 20:57:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1222638#M65872</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2022-10-17T20:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1229369#M66041</link>
      <description>&lt;P&gt;Thanks for the tip, this worked for me&lt;/P&gt;&lt;P&gt;I thought deleting the aprx would be enough... i had to delete the elements and layouts as well.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 22:53:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1229369#M66041</guid>
      <dc:creator>PeterMilenkovic</dc:creator>
      <dc:date>2022-11-07T22:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1270963#M67194</link>
      <description>&lt;P&gt;How do you handle to copies of the project you are saving? I have a script that is using save() frequently throughout - changing it to saveACopy() results in the a read only project being written over and over again. Any advice?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2023 16:37:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1270963#M67194</guid>
      <dc:creator>KevindeSouza</dc:creator>
      <dc:date>2023-03-23T16:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: project_service_aprx_object.save() Error from Pro 2.8.x to 2.9 upgrade</title>
      <link>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1282059#M67505</link>
      <description>&lt;P&gt;I noticed that save functions without indentation were throwing the error for me and that save functions inside&amp;nbsp; of a loop were not always throwing an error after reading your comment.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I chained two scripts together however and then it threw the error again so now I'm really stumped.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;saveACopy does not work for my purposes either just as a note for anyone reading.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 19:56:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/project-service-aprx-object-save-error-from-pro-2/m-p/1282059#M67505</guid>
      <dc:creator>ThomasBaconlol</dc:creator>
      <dc:date>2023-04-24T19:56:57Z</dc:date>
    </item>
  </channel>
</rss>

