<?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 Which table in Alfresco contains document approvers list? in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15196#M6724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to change the approver of a document from backend. Can someone please tell me which Alfresco DB table does contain the approver name or email ID?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Aug 2017 13:47:31 GMT</pubDate>
    <dc:creator>sarvadesagar</dc:creator>
    <dc:date>2017-08-18T13:47:31Z</dc:date>
    <item>
      <title>Which table in Alfresco contains document approvers list?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15196#M6724</link>
      <description>I need to change the approver of a document from backend. Can someone please tell me which Alfresco DB table does contain the approver name or email ID?Thanks,Sagar</description>
      <pubDate>Fri, 18 Aug 2017 13:47:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15196#M6724</guid>
      <dc:creator>sarvadesagar</dc:creator>
      <dc:date>2017-08-18T13:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Which table in Alfresco contains document approvers list?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15197#M6725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;I'd suggest posting under&lt;/SPAN&gt;&lt;A _jive_internal="true" class="" href="https://community.alfresco.com/community/ecm" style="color: #1e88e5; background-color: #ffffff; border: 0px; font-size: 14px; padding: 1px 0px 1px calc(12px + 0.35ex);" rel="nofollow noopener noreferrer"&gt;Alfresco Content Services (ECM)&lt;/A&gt;. Have you tried there? If you're an enterprise customer you can also consider going through the official support route.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 17:32:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15197#M6725</guid>
      <dc:creator>ryandawson</dc:creator>
      <dc:date>2017-08-24T17:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Which table in Alfresco contains document approvers list?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15198#M6726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll move this topic to ECM. Good call.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 19:41:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15198#M6726</guid>
      <dc:creator>kgastaldo</dc:creator>
      <dc:date>2017-08-24T19:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Which table in Alfresco contains document approvers list?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15199#M6727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are talking about approving a document via a workflow, then there is no single table that holds that data. Instead it is quite distributed. You have the Activiti tables act_ru_variable, act_hi_varinst and act_hi_detail that contain the active/historic workflow variables as well as change data for processes / tasks - if the approver is stored as workflow data you may find it here. Also, to find a workflow associated with the document you first may have to check the variables to see where the document is linked or where a special "workflow package" folder that contains the document is referenced.&lt;BR /&gt;The act_ru_identitylink / act_hi_identitylink tables contain candidate user / group assignments, whereas the current/last assignee of a task is stored in act_ru_task / act_hi_taskinst - the last assignee of an approval task would typically be an approver of the document / process. Users are typically stored via their user name, so you'd have to resolve that to the other properties of a user via the alf_node_properties table that stores node metadata - you'd need to check the property cm:userName and use the resulting node_id to load/group the other properties of that person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All in all, I hope you can see that getting the data from the tables directly is quite a hassle due to the data normalisation. It is far better to get the data via the Alfresco APIs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 08:57:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/which-table-in-alfresco-contains-document-approvers-list/m-p/15199#M6727</guid>
      <dc:creator>afaust</dc:creator>
      <dc:date>2017-08-25T08:57:24Z</dc:date>
    </item>
  </channel>
</rss>

