<?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: Workflow visualization in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323828#M10829</link>
    <description>&lt;P&gt;Hi Sylvain,&lt;/P&gt;
&lt;P&gt;Workflow tasks that are currently in progress, for the individual user, are provided in the 'Home' tab of your Nuxeo Platform. See the image below.&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;-Yousuf&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="My Workflow Tasks"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1912i77794394F2612FE1/image-size/large?v=v2&amp;amp;px=999" role="button" title="My Workflow Tasks" alt="My Workflow Tasks" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Aug 2016 13:25:16 GMT</pubDate>
    <dc:creator>Yousuf_Nejati</dc:creator>
    <dc:date>2016-08-19T13:25:16Z</dc:date>
    <item>
      <title>Workflow visualization</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323827#M10828</link>
      <description>&lt;P&gt;Hi,
Is anybody know how to query / view / show for a specific user (not an administrator) the tasks in progress for all the workflow he initiated ?
Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 10:23:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323827#M10828</guid>
      <dc:creator>SylvainD_</dc:creator>
      <dc:date>2016-08-18T10:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow visualization</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323828#M10829</link>
      <description>&lt;P&gt;Hi Sylvain,&lt;/P&gt;
&lt;P&gt;Workflow tasks that are currently in progress, for the individual user, are provided in the 'Home' tab of your Nuxeo Platform. See the image below.&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;-Yousuf&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="My Workflow Tasks"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1912i77794394F2612FE1/image-size/large?v=v2&amp;amp;px=999" role="button" title="My Workflow Tasks" alt="My Workflow Tasks" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 13:25:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323828#M10829</guid>
      <dc:creator>Yousuf_Nejati</dc:creator>
      <dc:date>2016-08-19T13:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow visualization</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323829#M10830</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 15:29:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323829#M10830</guid>
      <dc:creator>SylvainD_</dc:creator>
      <dc:date>2016-08-19T15:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow visualization</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323830#M10831</link>
      <description>&lt;P&gt;Hi Sylvain,&lt;/P&gt;
&lt;P&gt;Thanks for clearing that up. What you are looking for is distributed over various tables in the database, in the tables 'task', 'task_info', and 'task_step'.&lt;/P&gt;
&lt;P&gt;Use the dashboard layout contribution as an example, at:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;component name="org.nuxeo.ecm.user.center.dashboard.jsf.layouts.dashboard"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can easily create your own widget, querying the database for your desired fields, and add your new widget to the dashboard. Or, even modifying the current dashboard_user_tasks widget, and overriding the default by packaging your contribution, either in Studio or IDE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&amp;lt;widget name="dashboard_user_tasks" type="contentViewWithForms"&amp;gt;
&amp;lt;!-- handles labels to display the widget help within the widget --&amp;gt;
&amp;lt;handlingLabels&amp;gt;true&amp;lt;/handlingLabels&amp;gt;
&amp;lt;labels&amp;gt;
&amp;lt;label mode="any"&amp;gt;title.dashboard.userTasks&amp;lt;/label&amp;gt;
&amp;lt;/labels&amp;gt;
&amp;lt;helpLabels&amp;gt;
&amp;lt;label mode="any"&amp;gt;label.workflow.tasks&amp;lt;/label&amp;gt;
&amp;lt;/helpLabels&amp;gt;
&amp;lt;translated&amp;gt;true&amp;lt;/translated&amp;gt;
&amp;lt;properties widgetMode="any"&amp;gt;
&amp;lt;property name="contentViewName"&amp;gt;user_tasks&amp;lt;/property&amp;gt;
&amp;lt;property name="foldable"&amp;gt;true&amp;lt;/property&amp;gt;
&amp;lt;property name="useAjaxPagination"&amp;gt;true&amp;lt;/property&amp;gt;
&amp;lt;/properties&amp;gt;
&amp;lt;/widget&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This all should help you get to where you need to be.&lt;/P&gt;
&lt;P&gt;-Yousuf&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2016 18:02:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323830#M10831</guid>
      <dc:creator>Yousuf_Nejati</dc:creator>
      <dc:date>2016-08-21T18:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow visualization</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323831#M10832</link>
      <description>&lt;P&gt;Monitoring workflow is done usually by Administrator. I would suggest to create a content view where you query your dc:created workflows and their tasks. I had a similar problem and i solve it this way. Although if your are an administrator it does not show you a visual graph for the current workflow.
&lt;A href="https://doc.nuxeo.com/display/NXDOC/How+to+Query+Workflow+Objects" target="test_blank"&gt;https://doc.nuxeo.com/display/NXDOC/How+to+Query+Workflow+Objects&lt;/A&gt; This should help you a bit.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 07:09:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/workflow-visualization/m-p/323831#M10832</guid>
      <dc:creator>Amir_Buzo</dc:creator>
      <dc:date>2016-08-30T07:09:08Z</dc:date>
    </item>
  </channel>
</rss>

