<?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: ACT_HI_VARINST table - TASK_ID_ in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127293#M89539</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What is your history level? For variable history, you need to set it higher than default.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 May 2013 08:03:27 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2013-05-14T08:03:27Z</dc:date>
    <item>
      <title>ACT_HI_VARINST table - TASK_ID_</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127292#M89538</link>
      <description>Hi,My goal is to get all HistoricVariableInstances with specific taskId from ACT_HI_VARINST table, but every row in that table (which represents HistoricVariableInstance) is set to NULL.Is there a way to associate process variable with a task which might result in TASK_ID_ (in table ACT_HI_VARINST)</description>
      <pubDate>Mon, 13 May 2013 09:59:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127292#M89538</guid>
      <dc:creator>lixkid</dc:creator>
      <dc:date>2013-05-13T09:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: ACT_HI_VARINST table - TASK_ID_</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127293#M89539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What is your history level? For variable history, you need to set it higher than default.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 08:03:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127293#M89539</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-05-14T08:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: ACT_HI_VARINST table - TASK_ID_</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127294#M89540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What is your history level? For variable history, you need to set it higher than default.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Even after I changed property "history" (in the definition of processEngineConfiguration bean in activiti.cfg.xml) by setting it to "full" with the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;bean id="processEngineConfiguration" class="org.activiti.cdi.CdiJtaProcessEngineConfiguration"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;property name="history" value="full" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;/bean&amp;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;values in column TASK_ID_ (table ACT_HI_VARINST) are set to NULL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you please have any other suggestions?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2013 10:37:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127294#M89540</guid>
      <dc:creator>lixkid</dc:creator>
      <dc:date>2013-05-14T10:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: ACT_HI_VARINST table - TASK_ID_</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127295#M89541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have found a solution to my problem in&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://forums.activiti.org/content/null-taskid-task-variables" rel="nofollow noopener noreferrer"&gt;this post&lt;/A&gt;&lt;SPAN&gt; .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In order for task id to be saved in TASK_ID_ column (table ACT_HI_VARINST), it needs to be associated with process variables by using the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;taskService.setVariablesLocal(task.getId(), vars);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2013 07:00:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127295#M89541</guid>
      <dc:creator>lixkid</dc:creator>
      <dc:date>2013-05-15T07:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: ACT_HI_VARINST table - TASK_ID_</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127296#M89542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for sharing the solution!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2013 18:42:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/act-hi-varinst-table-task-id/m-p/127296#M89542</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-05-21T18:42:46Z</dc:date>
    </item>
  </channel>
</rss>

