<?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 define custom Id to additionally identify a process instance in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198828#M151958</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 have a use-case where I want to define a parent Id to associate multiple process instances in a process. I want to fetch data of all process instances associated with this parent Id. How is it possible to provide such a custom identifier? Also, how can this custom identifier used for querying purposes?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Shuchi&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Nov 2014 08:12:57 GMT</pubDate>
    <dc:creator>shuchi</dc:creator>
    <dc:date>2014-11-27T08:12:57Z</dc:date>
    <item>
      <title>How to define custom Id to additionally identify a process instance</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198828#M151958</link>
      <description>Hi,I have a use-case where I want to define a parent Id to associate multiple process instances in a process. I want to fetch data of all process instances associated with this parent Id. How is it possible to provide such a custom identifier? Also, how can this custom identifier used for querying p</description>
      <pubDate>Thu, 27 Nov 2014 08:12:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198828#M151958</guid>
      <dc:creator>shuchi</dc:creator>
      <dc:date>2014-11-27T08:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to define custom Id to additionally identify a process instance</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198829#M151959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Shuchi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the easiest approach would be to use a specific process variable in all these process instances for this purpose. You can use the query API to search on a specific process variable value then.&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>Thu, 27 Nov 2014 10:41:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198829#M151959</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-11-27T10:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to define custom Id to additionally identify a process instance</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198830#M151960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Shuchi.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2 possibilities came to my mind (there are others too):&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;use your custom process variable with the value and store in activiti tables. (- performance of the queries, + ready to use)&lt;/LI&gt;&lt;LI&gt;extend activiti structures to cover your needs&lt;/LI&gt;&lt;/UL&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, 27 Nov 2014 10:42:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198830#M151960</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-11-27T10:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to define custom Id to additionally identify a process instance</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198831#M151961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Tijs and Martin, I defined a process variable per process instance initialisation to differentiate process instances and used businessKey to group them. However, I am not able to query by businessKey. This is what I am doing:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;POST query/process-instances&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; "processDefinitionKey": "MyProcess",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; "businessKey":"MyBusinesKey"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried replacing "businessKey" with "processInstanceBusinessKey" as well but each time I get a 400.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is querying by businessKey not possible or am I doing something wrong here?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Shuchi&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 08:21:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198831#M151961</guid>
      <dc:creator>shuchi</dc:creator>
      <dc:date>2014-11-28T08:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to define custom Id to additionally identify a process instance</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198832#M151962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Use 'processBusinessKey'. It is described in the user guide … (which is where I found it)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:46:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-define-custom-id-to-additionally-identify-a-process/m-p/198832#M151962</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-12-05T14:46:37Z</dc:date>
    </item>
  </channel>
</rss>

