<?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: User id in act_hi_attachment is always null in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156172#M110438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello. here's an update: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I got it working by querying the TaskService via getProcessInstanceComments(processInstanceId) - once the task is completed the attachment is related to the process instance - and then matching with the taskId (will see what to do when a task has more than one attachment)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe I'm approaching it the wrong way, but here's the scenario: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a user task that has a listener for the onComplete event. That listener generates a pdf and attachs it to the task. This task is a part of an administrative process and I want&amp;nbsp; only the user that generated the attachment to be able to delete it, or someone with admin permission only (it is not saved as a file but as a byte stream on the act_ge_bytearray table). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, when I saw the user_id_ field on the attachment table I thought - problem solved. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As balsarori pointed out,&amp;nbsp; AttachmentEntity doesn't have a user_id_ property, but there's still the field on the table. The comment table obviously has no attachment_id field - that would be wrong, but saves "AddAttachment" as action_ , and the file name as message_ . I'm curious as to why I can't retrieve any of the 2 fields through the Comment class (no getAction() or getMessage() methods ) - I can use getFullMessage() but it's null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In my opinion, it would be much easier to save the user_id to the act_hi_attachment table, but then again, is my approach wrong? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esteban&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Dec 2013 15:11:31 GMT</pubDate>
    <dc:creator>sistemasmunicip</dc:creator>
    <dc:date>2013-12-17T15:11:31Z</dc:date>
    <item>
      <title>User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156166#M110432</link>
      <description>Hello, using Java api to add attachments to a Task, the field user_id_ in the act_hi_attachment is never set. As for the Attachment java class, it doesn't have an user_id attribute either.I was hoping to control the users that can read/delete an attachment usin the user id.I tried with Authorization</description>
      <pubDate>Fri, 13 Dec 2013 14:25:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156166#M110432</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-13T14:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156167#M110433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you're adding attachments using the API, make sure the logic that calls the API is managing the "current user" the engine uses.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is done by setting a (internally thread-local) value using org.activiti.engine.impl.identity.Authentication:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;BR /&gt;try {&lt;BR /&gt;&amp;nbsp; Authentication.setAuthenticatedUserId("kermit");&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; // Your code here&lt;BR /&gt;} finally {&lt;BR /&gt;&amp;nbsp; Authentication.setAuthenticatedUserId(null);&amp;nbsp; &lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can perhaps add it to a shared base-class of your application (or a servlet-filter) to have this done transparently. &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 07:19:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156167#M110433</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-12-16T07:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156168#M110434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Frederik, thanks for the answer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had tried with Authentication.setAuthenticatedUserId but the result is the same. (in the first post I wrote the class wrong - Authorization.authenticatedUser) Here, the code for a test that attachs a file but without user id&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // ActProcessEngine is a custom class that returns default process engine if exists, or creates a new one&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ProcessEngine processEngine = ActProcessEngine.getProcessEngine();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Authentication.setAuthenticatedUserId("my.user");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File f = new File("/home/Descargas/5577.pdf");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; TaskService ts = processEngine.getTaskService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; try {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; ts.createAttachment("application/pdf", "42592", "42221", "pruebaUsuario.pdf", "prueba con authenticated user", new FileInputStream(f));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; } catch (FileNotFoundException e) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; e.printStackTrace();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Authentication.setAuthenticatedUserId(null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; processEngine.close();&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;thanks again. Greetings&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esteban&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Dec 2013 10:45:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156168#M110434</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-16T10:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156169#M110435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;AttachmentEntity doesn't have a userId property and USER_ID_ of ACT_HI_ATTACHMENT is not mapped in Attachment.xml to any property.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 00:41:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156169#M110435</guid>
      <dc:creator>balsarori</dc:creator>
      <dc:date>2013-12-17T00:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156170#M110436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Good point balsarori. The user who creates the attachment is stored in a "comment":&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;public void createAttachmentComment(String taskId, String processInstanceId, String attachmentName, boolean create) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (isHistoryEnabled()) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String userId = Authentication.getAuthenticatedUserId();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommentEntity comment = new CommentEntity();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setUserId(userId);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setType(CommentEntity.TYPE_EVENT);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setTime(ClockUtil.getCurrentTime());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setTaskId(taskId);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setProcessInstanceId(processInstanceId);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(create) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setAction(Event.ACTION_ADD_ATTACHMENT);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setAction(Event.ACTION_DELETE_ATTACHMENT);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; comment.setMessage(attachmentName);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; getSession(CommentEntityManager.class).insert(comment);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 08:46:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156170#M110436</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-12-17T08:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156171#M110437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know the AttachmentEntity doesn't have a user_id_ property, but I was thinking I could query directly to the table in the worst case. I will try the comment and let you know. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your answers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esteban&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 10:21:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156171#M110437</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-17T10:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156172#M110438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello. here's an update: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I got it working by querying the TaskService via getProcessInstanceComments(processInstanceId) - once the task is completed the attachment is related to the process instance - and then matching with the taskId (will see what to do when a task has more than one attachment)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe I'm approaching it the wrong way, but here's the scenario: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a user task that has a listener for the onComplete event. That listener generates a pdf and attachs it to the task. This task is a part of an administrative process and I want&amp;nbsp; only the user that generated the attachment to be able to delete it, or someone with admin permission only (it is not saved as a file but as a byte stream on the act_ge_bytearray table). &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, when I saw the user_id_ field on the attachment table I thought - problem solved. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As balsarori pointed out,&amp;nbsp; AttachmentEntity doesn't have a user_id_ property, but there's still the field on the table. The comment table obviously has no attachment_id field - that would be wrong, but saves "AddAttachment" as action_ , and the file name as message_ . I'm curious as to why I can't retrieve any of the 2 fields through the Comment class (no getAction() or getMessage() methods ) - I can use getFullMessage() but it's null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In my opinion, it would be much easier to save the user_id to the act_hi_attachment table, but then again, is my approach wrong? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esteban&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 15:11:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156172#M110438</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-17T15:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156173#M110439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Esteban,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Comments and Attachments are a bit of "entities on the side", not 100% critical to the BPMN behaviour (as opposed to tasks, identity-links, executions, …). So the comments and attachments are added to facilitate working around tasks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, when I see your requirements, I think a better solution would be to use a process-variable for this and make your services smart enough to allow users to modify/delete that specific variable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 08:31:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156173#M110439</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-12-18T08:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156174#M110440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Frederik: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I understand your point, will try to work out the solution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any chance, in future versions, of user_id_ being inserted in act_hi_attachment? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esteban&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 11:26:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156174#M110440</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-18T11:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156175#M110441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;@Frederik&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also had a similar requirement. I solved it by adding a userId property to AttachmentEntity (getUserId method to Attachment interface) and mapped it to Attachment.xml.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are interested I can create a pull request for this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 20:37:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156175#M110441</guid>
      <dc:creator>balsarori</dc:creator>
      <dc:date>2013-12-18T20:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156176#M110442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Makes sense to me. A pull request would be good. i'll make sure we add the necessary db upgrades.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 09:16:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156176#M110442</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-12-19T09:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156177#M110443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the pull request&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/185" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/185&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 22:04:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156177#M110443</guid>
      <dc:creator>balsarori</dc:creator>
      <dc:date>2013-12-19T22:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156178#M110444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Good! Thanks for your time. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;An FYI, a similar situation occurs with act_hi_detail and task_id_ field, at least in my implementation (5.14) the field is always null. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Trying to get the variable updates for specific task ids&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Greetings&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 14:26:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156178#M110444</guid>
      <dc:creator>sistemasmunicip</dc:creator>
      <dc:date>2013-12-20T14:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156179#M110445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,I create a PR to fix Attachment.getUserId() always return null&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/236" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/236&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 00:08:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156179#M110445</guid>
      <dc:creator>quaff</dc:creator>
      <dc:date>2014-03-26T00:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: User id in act_hi_attachment is always null</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156180#M110446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Pull request merged, thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 17:43:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/user-id-in-act-hi-attachment-is-always-null/m-p/156180#M110446</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-04-01T17:43:04Z</dc:date>
    </item>
  </channel>
</rss>

