<?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: Complete (including subprocesses) process history in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50476#M29304</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Stefano,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I committed the patch, see JIRA issue &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-880" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-880&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 17 Jul 2011 15:12:01 GMT</pubDate>
    <dc:creator>trademak</dc:creator>
    <dc:date>2011-07-17T15:12:01Z</dc:date>
    <item>
      <title>Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50471#M29299</link>
      <description>I'm trying to implement what I suppose to be a very simple and common functionality for my application: the complete (including subprocesses) process history of a process that is not completed. This could be very useful to the user, making him understand what happened before.I'm realizing that its v</description>
      <pubDate>Fri, 15 Jul 2011 08:34:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50471#M29299</guid>
      <dc:creator>mlegnani</dc:creator>
      <dc:date>2011-07-15T08:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50472#M29300</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;I understand the issue. What you could do is set the process instance id of the callActivity as a process variable. With the in and out parameters construction you can provide input and output parameters for a call activity like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;callActivity id="test" calledElement="testProcess"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;extensionElements&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti:in source="test" target="test2" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ut source="test2" target="test" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;/extensionElements&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/callActivity&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then you can easily connect the two processes.&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>Fri, 15 Jul 2011 12:24:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50472#M29300</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-07-15T12:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50473#M29301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have modified activity engine, adding &lt;/SPAN&gt;&lt;EM&gt;superProcessInstanceId&lt;/EM&gt;&lt;SPAN&gt; to the &lt;/SPAN&gt;&lt;EM&gt;HistoricProcessInstanceEntity&lt;/EM&gt;&lt;SPAN&gt; .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So you can query historic process instances using syntax like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;historyService.createHistoricProcessInstanceQuery().superProcessInstanceId(ID).list();&lt;/CODE&gt;&lt;SPAN&gt;It seems working, you can find a svn diff file attached ( created using the 5.6 tag revision ) so the team can ( if it likes this feature ) insert it into next releases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have added a simple unit test, to test it. Tested only with H2 db, but probably it work also with others dbms …&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hoper this helps you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bye&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Stefano &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tinvention.net&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 13:25:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50473#M29301</guid>
      <dc:creator>campa</dc:creator>
      <dc:date>2011-07-15T13:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50474#M29302</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;The change looks good and is certainly something we can add.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Although, we also need an upgrade script like the ones you can find in activiti-engine/src/main/resources/org/activiti/db/upgrade.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you can add those also in a diff script then I can try to integrate it into trunk.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 13:44:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50474#M29302</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-07-15T13:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50475#M29303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;The change looks good and is certainly something we can add.&lt;BR /&gt;Although, we also need an upgrade script like the ones you can find in activiti-engine/src/main/resources/org/activiti/db/upgrade.&lt;BR /&gt;If you can add those also in a diff script then I can try to integrate it into trunk.&lt;BR /&gt;Thanks,&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the svn diff file ( from 5.6 tag ) , with upgrade files added ( but, not tested ).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bye&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Stefano&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tinvention.net&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jul 2011 14:38:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50475#M29303</guid>
      <dc:creator>campa</dc:creator>
      <dc:date>2011-07-15T14:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50476#M29304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Stefano,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I committed the patch, see JIRA issue &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-880" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-880&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Jul 2011 15:12:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50476#M29304</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-07-17T15:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Complete (including subprocesses) process history</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50477#M29305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks a lot to Stefano for his excellent work. I'm using it in my project and the new feature works fine! &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Massimo.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2011 09:10:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/complete-including-subprocesses-process-history/m-p/50477#M29305</guid>
      <dc:creator>mlegnani</dc:creator>
      <dc:date>2011-07-19T09:10:58Z</dc:date>
    </item>
  </channel>
</rss>

