<?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: Upgrading to the latest process version in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91850#M62730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is not a very easy task. What kind of changes did you make between the old and the new process definition?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, you would have to update the PROC_DEF_ID_ column for the running process instance, but you also need to do that for the history table if you want to keep that information as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But be aware that you might run into a lot of difficulties here, depending on the changes that are made to the process definition.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2012 07:32:04 GMT</pubDate>
    <dc:creator>trademak</dc:creator>
    <dc:date>2012-08-15T07:32:04Z</dc:date>
    <item>
      <title>Upgrading to the latest process version</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91849#M62729</link>
      <description>What is the easiest way to upgrade the running process instance to the latest process deployment version if some one wants to do it?&amp;nbsp; Does updating the proc_def_id_&amp;nbsp; in database tables suffice or something else needs to be taken care of? Help, Please!!!!!!!!!!</description>
      <pubDate>Wed, 15 Aug 2012 02:07:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91849#M62729</guid>
      <dc:creator>plehal</dc:creator>
      <dc:date>2012-08-15T02:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading to the latest process version</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91850#M62730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is not a very easy task. What kind of changes did you make between the old and the new process definition?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, you would have to update the PROC_DEF_ID_ column for the running process instance, but you also need to do that for the history table if you want to keep that information as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But be aware that you might run into a lot of difficulties here, depending on the changes that are made to the process definition.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 07:32:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91850#M62730</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2012-08-15T07:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading to the latest process version</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91851#M62731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the quick response. Yes, I do understand that I may run into problems/issues but this is one feature which I need as I am using Activiti in production environment and sometimes as part of business process modifications we are making slight changes to the process like adding or deleting task listeners. I understand as long as we don't add or delete task nodes or rename them….everything should be alright. All I need to know is name of all the tables where I need to update the process definition reference. I will have to live with this hack until this feature becomes part of official release. Will you be so kind to tell the table name which use reference to process definitions……? Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 16:22:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91851#M62731</guid>
      <dc:creator>plehal</dc:creator>
      <dc:date>2012-08-15T16:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading to the latest process version</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91852#M62732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So far I have come up with following :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;update&amp;nbsp; ACT_RU_EXECUTION set PROC_DEF_ID_=(" +&lt;BR /&gt;&amp;nbsp;&amp;nbsp; "select ID_ from ACT_RE_PROCDEF where ID_ like 'ECR%' order by version_ desc limit 1 " +&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ")" +&lt;BR /&gt;&amp;nbsp;&amp;nbsp; " where PROC_DEF_ID_ like 'ECR%'"&amp;nbsp; ;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;update&amp;nbsp; ACT_RU_TASK set PROC_DEF_ID_=(" +&lt;BR /&gt;&amp;nbsp; "select ID_ from ACT_RE_PROCDEF where ID_ like 'ECR%' order by version_ desc limit 1" +&lt;BR /&gt;&amp;nbsp; ") " +&lt;BR /&gt;&amp;nbsp; "where PROC_DEF_ID_ like 'ECR%'" ;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; update&amp;nbsp; ACT_HI_PROCINST set PROC_DEF_ID_=(" +&lt;BR /&gt;&amp;nbsp; "select ID_ from ACT_RE_PROCDEF where ID_ like 'ECR%' order by version_ desc limit 1" +&lt;BR /&gt;&amp;nbsp; ") " +&lt;BR /&gt;&amp;nbsp; "where PROC_DEF_ID_ like 'ECR%';&lt;BR /&gt; &lt;BR /&gt;update&amp;nbsp; ACT_HI_TASKINST set PROC_DEF_ID_=(" +&lt;BR /&gt;&amp;nbsp; "select ID_ from ACT_RE_PROCDEF where ID_ like 'ECR%' order by version_ desc limit 1" +&lt;BR /&gt;&amp;nbsp; ") " +&lt;BR /&gt;&amp;nbsp; "where PROC_DEF_ID_ like 'ECR%'";&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; update&amp;nbsp; ACT_HI_ACTINST set PROC_DEF_ID_=(" +&lt;BR /&gt;&amp;nbsp; "select ID_ from ACT_RE_PROCDEF where ID_ like 'ECR%' order by version_ desc limit 1" +&lt;BR /&gt;&amp;nbsp; ") " +&lt;BR /&gt;&amp;nbsp; "where PROC_DEF_ID_ like 'ECR%';&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Please, note that the code has been copied from a java program, so it has some extra characters………..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2012 16:54:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91852#M62732</guid>
      <dc:creator>plehal</dc:creator>
      <dc:date>2012-08-15T16:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrading to the latest process version</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91853#M62733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Without having done this before, I read sometimes about SetProcessDefinitionVersionCmd on the forums (it's not documented). You might want to take a look at that class and see if it fits your use case.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2012 13:58:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/upgrading-to-the-latest-process-version/m-p/91853#M62733</guid>
      <dc:creator>naag</dc:creator>
      <dc:date>2012-08-20T13:58:38Z</dc:date>
    </item>
  </channel>
</rss>

