<?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: CallActivity with Related content in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176254#M129384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much for your response. My requirement is to fetches the content that associated with sub process level into the parent process which looks like not possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please advice.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2015 15:38:07 GMT</pubDate>
    <dc:creator>girijass</dc:creator>
    <dc:date>2015-03-06T15:38:07Z</dc:date>
    <item>
      <title>CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176249#M129379</link>
      <description>Hi,We are evaluating the use of Activiti on our current project. I have created sub Activity which i am calling from my parent Activity as "called element". I have added&amp;nbsp; related contents on my sub Activity . once completed the sub Activity related contents are not showing up on my parent Activity.</description>
      <pubDate>Wed, 04 Mar 2015 21:52:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176249#M129379</guid>
      <dc:creator>girijass</dc:creator>
      <dc:date>2015-03-04T21:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176250#M129380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Girija.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you create jUnit test please?&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://forums.activiti.org/content/sticky-how-write-unit-test" rel="nofollow noopener noreferrer"&gt;http://forums.activiti.org/content/sticky-how-write-unit-test&lt;/A&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, 05 Mar 2015 11:48:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176250#M129380</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2015-03-05T11:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176251#M129381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class ProcessTestOrderProcess {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; private String filename = "C:\\Documents\\workspace-sts-3.5.1.RELEASE\\ActivityDemo\\src\\main\\resources\\diagrams\\orderProcess.bpmn";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; private String filename1 = "C:\\Documents\\workspace-sts-3.5.1.RELEASE\\ActivityDemo\\src\\main\\resources\\diagrams\\checkCreditProcess.bpmn";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; @Rule&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; public ActivitiRule activitiRule = new ActivitiRule();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; @Test&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; public void startProcess() throws Exception {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; RepositoryService repositoryService = activitiRule.getRepositoryService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; repositoryService.createDeployment().addInputStream("orderProcess.bpmn20.xml",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new FileInputStream(filename)).deploy();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; repositoryService.createDeployment().addInputStream("checkCreditProcess.bpmn20.xml",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; new FileInputStream(filename1)).deploy();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; RuntimeService runtimeService = activitiRule.getRuntimeService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Map&amp;lt;String, Object&amp;gt; variableMap = new HashMap&amp;lt;String, Object&amp;gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; variableMap.put("checkCreditProcess", true);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("orderProcess", variableMap);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; assertNotNull(processInstance.getId());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; System.out.println("id " + processInstance.getId() + " "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + processInstance.getProcessDefinitionId());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;JUnit working fine but the related components i am uploading on checkCreditProcess are not showing up on the main order process. Please help me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Girija&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 17:20:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176251#M129381</guid>
      <dc:creator>girijass</dc:creator>
      <dc:date>2015-03-05T17:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176252#M129382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I saw the table&amp;nbsp; ACT_HI_ATTACHMENT&amp;nbsp; the document linked with PROC_INST_ID and as calling element process instance Id is different from called Element Process Id. I am not sure how to display the related contents added in called Element into calling element.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help will be highly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 02:17:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176252#M129382</guid>
      <dc:creator>girijass</dc:creator>
      <dc:date>2015-03-06T02:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176253#M129383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What is your unit test trying to do? I'm just seeing process instances being started, but nothing with attachments?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Given your last comment, it may very well be the logic in Explorer is implemented in such a way it only fetches the content using the process instance id.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 08:32:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176253#M129383</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-03-06T08:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176254#M129384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much for your response. My requirement is to fetches the content that associated with sub process level into the parent process which looks like not possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please advice.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 15:38:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176254#M129384</guid>
      <dc:creator>girijass</dc:creator>
      <dc:date>2015-03-06T15:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: CallActivity with Related content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176255#M129385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah I got that. I'm just saying your unit test is not showing that at all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like I said: it more likely that it's simply not implemented that way in Explorer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 12:23:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/callactivity-with-related-content/m-p/176255#M129385</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-03-10T12:23:51Z</dc:date>
    </item>
  </channel>
</rss>

