<?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 How to let parent process instance continue when child process instance is deleted in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183300#M136430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to model a multi-level workflows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ top level workflow will perform "call-activity" (this will create child process instance).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ If the child process instance is "DELETED", the parent "call-activity" will wait forever.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I want is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ the parent process instance to continue after the child process instance is deleted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;QUESTIONS:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How to accomplish that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can I use some API to implement that? If yes, what API?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can I use additional BPMN constructs to implement that? If yes, what constructs?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the above do not exist,&amp;nbsp; are there other approaches?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance for your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 May 2015 20:05:02 GMT</pubDate>
    <dc:creator>steve_cgi</dc:creator>
    <dc:date>2015-05-13T20:05:02Z</dc:date>
    <item>
      <title>How to let parent process instance continue when child process instance is deleted</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183300#M136430</link>
      <description>Hi all,I want to model a multi-level workflows:+ top level workflow will perform "call-activity" (this will create child process instance).+ If the child process instance is "DELETED", the parent "call-activity" will wait forever.What I want is:+ the parent process instance to continue after the chi</description>
      <pubDate>Wed, 13 May 2015 20:05:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183300#M136430</guid>
      <dc:creator>steve_cgi</dc:creator>
      <dc:date>2015-05-13T20:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to let parent process instance continue when child process instance is deleted</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183301#M136431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Steve,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would recommend to do not delete child process. Instead of delete child (or external system) could throw a message to inform parent to cancel the child. Parent's call activity can catch the message and continue in the execution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 07:01:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183301#M136431</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2015-05-14T07:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to let parent process instance continue when child process instance is deleted</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183302#M136432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First, thanks Martin for the suggestion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me make sure I understand:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ I will have a message boundary event attached to the call-activity in the top level process&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ I can use the REST API to send the message to the call-activity by the execution ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;+ The call-activity will get "cancelled" by default, and move on to the next "step" in the process&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(or do I need to specify explicitly a path for the message event in BPMN?)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is that about right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How happens to the child process instance after the call-activity is cancelled? Does it hang around? Do I need to "delete" it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 15:01:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183302#M136432</guid>
      <dc:creator>steve_cgi</dc:creator>
      <dc:date>2015-05-14T15:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to let parent process instance continue when child process instance is deleted</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183303#M136433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried it out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have to attach the additional path to the message boundary event otherwise it will just hang in the associated call-activity; it will not transit to the next activity.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also the child process instance will be gone.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope in the history table there will still be history for the child process instance and its associated activities. Will it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 21:51:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183303#M136433</guid>
      <dc:creator>steve_cgi</dc:creator>
      <dc:date>2015-05-14T21:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to let parent process instance continue when child process instance is deleted</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183304#M136434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, depends on the history level. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 07:11:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-let-parent-process-instance-continue-when-child-process/m-p/183304#M136434</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2015-05-18T07:11:53Z</dc:date>
    </item>
  </channel>
</rss>

