<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Not able to navigate screens in site</title><link>https://community.appian.com/discussions/f/new-to-appian/19679/not-able-to-navigate-screens-in-site</link><description>I have a process model with 3 screens. I have created one site with process model mapped to that page. I complete work on first page then it goes to user to accept tasks. Can i get this accept task function in site? After accepting the task it should</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76915?ContentTypeID=1</link><pubDate>Tue, 06 Oct 2020 06:44:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:be4f762c-85d3-4cc4-aea1-1c2c94c42543</guid><dc:creator>monikas0003</dc:creator><description>&lt;p&gt;thanks it worked :)&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76914?ContentTypeID=1</link><pubDate>Tue, 06 Oct 2020 06:41:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0c911e09-77b2-40f5-b2ee-01c175c683a7</guid><dc:creator>Shikha</dc:creator><description>&lt;p&gt;Try this&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!statusFilter:null,
  local!taskStatuses: {
    &amp;quot;Assigned&amp;quot;,
    &amp;quot;Accepted&amp;quot;,
    &amp;quot;Completed&amp;quot;,
    &amp;quot;Not Started&amp;quot;,
    &amp;quot;Cancelled&amp;quot;,
    &amp;quot;Paused&amp;quot;,
    &amp;quot;Unattended&amp;quot;,
    &amp;quot;Aborted&amp;quot;,
    &amp;quot;Cancelled By Exception&amp;quot;,
    &amp;quot;Submitted&amp;quot;,
    &amp;quot;Running&amp;quot;,
    &amp;quot;Error&amp;quot;
  },
  a!sectionLayout(
    contents: {
      a!dropdownField(
        label: &amp;quot;Status&amp;quot;,
        placeholderLabel: &amp;quot;Pick a status&amp;quot;,
        choiceLabels: {
          &amp;quot;Assigned&amp;quot;,
          &amp;quot;Accepted&amp;quot;,
          &amp;quot;Completed&amp;quot;,
          &amp;quot;Not Started&amp;quot;
        },
        choiceValues: enumerate(
          4
        ),
        value: local!statusFilter,
        saveInto: local!statusFilter
      ),
      a!gridField(
        label: &amp;quot;My Tasks&amp;quot;,
        instructions: &amp;quot;A list of all tasks for the current user&amp;quot;,
        labelPosition: &amp;quot;ABOVE&amp;quot;,
        data: a!queryProcessAnalytics(
          report: cons!MY_TASKS_REPORT,
          query: a!query(
            pagingInfo: fv!pagingInfo,
            filter: a!queryFilter(
              field: &amp;quot;c5&amp;quot;,
              operator: &amp;quot;=&amp;quot;,
              value: local!statusFilter,
              applyWhen: not(
                isnull(
                  local!statusFilter
                )
              ),
              
            ),
            
          ),
          
        ),
        columns: {
          a!gridColumn(
            label: &amp;quot;Name&amp;quot;,
            sortField: &amp;quot;c0&amp;quot;,
            value: a!linkField(
              links: a!processTaskLink(
                label: fv!row.c0,
                task: fv!identifier
              )
            )
          ),
          a!gridColumn(
            label: &amp;quot;Process&amp;quot;,
            sortField: &amp;quot;c3&amp;quot;,
            value: fv!row.c3
          ),
          a!gridColumn(
            label: &amp;quot;Status&amp;quot;,
            sortField: &amp;quot;c5&amp;quot;,
            value: a!forEach(
              items: fv!row.c5,
              expression: if(
                not(
                  isnull(
                    fv!row.c5
                  )
                ),
                fn!index(
                  local!taskStatuses,
                  tointeger(
                    fv!item
                  ) + 1,
                  &amp;quot;Other&amp;quot;
                ),
                tostring(
                  fv!item
                )
              )
            )
          )
        },
        rowHeader: 1
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76913?ContentTypeID=1</link><pubDate>Tue, 06 Oct 2020 06:15:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1a20300f-58c5-4426-a67c-487734f0df25</guid><dc:creator>monikas0003</dc:creator><description>&lt;p&gt;code for predefined filter in task report tutorial link is throwing error.&amp;nbsp;&lt;strong class="StrongText---richtext_strong StrongText---inMessageLayout StrongText---error"&gt;Could not display interface. Please check definition and inputs.&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;Interface Definition: Expression evaluation error at function a!dropdownField [line 19]: A dropdown component [label=&amp;ldquo;Status&amp;rdquo;] has an invalid value for &amp;ldquo;value&amp;rdquo;. Value cannot be null.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Below is the code&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;&lt;span class="nf"&gt;a!localVariables&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
&lt;span class="gs"&gt; local!statusFilter: null,
&lt;/span&gt;  &lt;span class="k"&gt;local!taskStatuses&lt;/span&gt;&lt;span class="ow"&gt;:&lt;/span&gt; &lt;span class="ow"&gt;{&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Assigned&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Accepted&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Completed&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Not Started&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Cancelled&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Paused&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Unattended&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Aborted&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Cancelled By Exception&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Submitted&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Running&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
    &lt;span class="s"&gt;&amp;quot;Error&amp;quot;&lt;/span&gt;
  &lt;span class="ow"&gt;},&lt;/span&gt;
&lt;span class="gs"&gt; a!sectionLayout(
&lt;/span&gt;&lt;span class="gs"&gt;   contents:{
&lt;/span&gt;&lt;span class="gs"&gt;     a!dropdownField(
&lt;/span&gt;&lt;span class="gs"&gt;       label: &amp;quot;Status&amp;quot;,
&lt;/span&gt;&lt;span class="gs"&gt;       placeholder: &amp;quot;Pick a status&amp;quot;,
&lt;/span&gt;&lt;span class="gs"&gt;       choiceLabels: { &amp;quot;Assigned&amp;quot;, &amp;quot;Accepted&amp;quot;, &amp;quot;Completed&amp;quot;, &amp;quot;Not Started&amp;quot; },
&lt;/span&gt;&lt;span class="gs"&gt;       choiceValues: enumerate(4),
&lt;/span&gt;&lt;span class="gs"&gt;       value: local!statusFilter,
&lt;/span&gt;&lt;span class="gs"&gt;       saveInto: local!statusFilter
&lt;/span&gt;&lt;span class="gs"&gt;     ),
&lt;/span&gt;      &lt;span class="nf"&gt;a!gridField&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
        &lt;span class="ss"&gt;label:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;My Tasks&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
        &lt;span class="ss"&gt;instructions:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;A list of all tasks for the current user&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
        &lt;span class="ss"&gt;labelPosition:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;ABOVE&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
        &lt;span class="ss"&gt;data:&lt;/span&gt; &lt;span class="nf"&gt;a!queryProcessAnalytics&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
          &lt;span class="ss"&gt;report:&lt;/span&gt; &lt;span class="no"&gt;cons!MY_TASKS_REPORT&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
          &lt;span class="ss"&gt;query:&lt;/span&gt; &lt;span class="nf"&gt;a!query&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
            &lt;span class="ss"&gt;pagingInfo:&lt;/span&gt; &lt;span class="k"&gt;fv!pagingInfo&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
&lt;span class="gs"&gt;           filter: a!queryFilter(
&lt;/span&gt;&lt;span class="gs"&gt;               field: &amp;quot;c5&amp;quot;,
&lt;/span&gt;&lt;span class="gs"&gt;               operator: &amp;quot;=&amp;quot;,
&lt;/span&gt;&lt;span class="gs"&gt;               value: local!statusFilter,
&lt;/span&gt;&lt;span class="gs"&gt;               applyWhen: not(
&lt;/span&gt;                  &lt;span class="nf"&gt;isnull&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
                    &lt;span class="k"&gt;local!statusFilter&lt;/span&gt;
                  &lt;span class="ow"&gt;)&lt;/span&gt;
                &lt;span class="ow"&gt;),&lt;/span&gt;
&lt;span class="gs"&gt;             ),
&lt;/span&gt;          &lt;span class="ow"&gt;),&lt;/span&gt;
        &lt;span class="ow"&gt;),&lt;/span&gt;
        &lt;span class="ss"&gt;columns:&lt;/span&gt; &lt;span class="ow"&gt;{&lt;/span&gt;
          &lt;span class="nf"&gt;a!gridColumn&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
            &lt;span class="ss"&gt;label:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;Name&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;sortField:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;c0&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;value:&lt;/span&gt; &lt;span class="nf"&gt;a!linkField&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
              &lt;span class="ss"&gt;links:&lt;/span&gt; &lt;span class="nf"&gt;a!processTaskLink&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
                &lt;span class="ss"&gt;label:&lt;/span&gt; &lt;span class="k"&gt;fv!row.c0&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
                &lt;span class="ss"&gt;task:&lt;/span&gt; &lt;span class="k"&gt;fv!identifier&lt;/span&gt;
              &lt;span class="ow"&gt;)&lt;/span&gt;
            &lt;span class="ow"&gt;)&lt;/span&gt;
          &lt;span class="ow"&gt;),&lt;/span&gt;
          &lt;span class="nf"&gt;a!gridColumn&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
            &lt;span class="ss"&gt;label:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;Process&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;sortField:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;c3&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;value:&lt;/span&gt; &lt;span class="k"&gt;fv!row.c3&lt;/span&gt;
          &lt;span class="ow"&gt;),&lt;/span&gt;
          &lt;span class="nf"&gt;a!gridColumn&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
            &lt;span class="ss"&gt;label:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;Status&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;sortField:&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;c5&amp;quot;&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
            &lt;span class="ss"&gt;value:&lt;/span&gt; &lt;span class="nf"&gt;a!forEach&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
              &lt;span class="ss"&gt;items:&lt;/span&gt; &lt;span class="k"&gt;fv!row.c5&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;
              &lt;span class="ss"&gt;expression:&lt;/span&gt; &lt;span class="nf"&gt;if&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
                &lt;span class="nf"&gt;not(isnull&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;&lt;span class="k"&gt;fv!row.c5&lt;/span&gt;&lt;span class="ow"&gt;)),&lt;/span&gt;
                &lt;span class="nf"&gt;fn!index&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;
                  &lt;span class="k"&gt;local!taskStatuses&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;&lt;span class="nf"&gt;tointeger&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;&lt;span class="k"&gt;fv!item&lt;/span&gt;&lt;span class="ow"&gt;)&lt;/span&gt;&lt;span class="mi"&gt;+1&lt;/span&gt;&lt;span class="ow"&gt;,&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;Other&amp;quot;&lt;/span&gt;
                &lt;span class="ow"&gt;),&lt;/span&gt;
                &lt;span class="nf"&gt;tostring&lt;/span&gt;&lt;span class="ow"&gt;(&lt;/span&gt;&lt;span class="k"&gt;fv!item&lt;/span&gt;&lt;span class="ow"&gt;)&lt;/span&gt;
              &lt;span class="ow"&gt;)&lt;/span&gt;
            &lt;span class="ow"&gt;)&lt;/span&gt;
          &lt;span class="ow"&gt;)&lt;/span&gt;
        &lt;span class="ow"&gt;},&lt;/span&gt;
        &lt;span class="ss"&gt;rowHeader:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;
      &lt;span class="ow"&gt;)&lt;/span&gt;
&lt;span class="gs"&gt;   }
&lt;/span&gt;&lt;span class="gs"&gt; )
&lt;/span&gt;&lt;span class="ow"&gt;)&lt;/span&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76900?ContentTypeID=1</link><pubDate>Mon, 05 Oct 2020 16:42:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:39f8bccd-ace5-48f6-b5c2-078d6dfec2fd</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;Yeah you can configure links within the grid to bring you directly to the associated task. I&amp;#39;d suggest looking at the &lt;a href="https://docs.appian.com/suite/help/latest/Task_Report_Tutorial.html"&gt;Task Report Tutorial&lt;/a&gt;, which provides a great walkthrough for how to configure several aspects of task reports.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76898?ContentTypeID=1</link><pubDate>Mon, 05 Oct 2020 16:33:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:12a514e6-7cad-498b-8992-f6f0af0515ad</guid><dc:creator>monikas0003</dc:creator><description>&lt;p&gt;thank you for your reply. I will try to implement this thing for accepting the tasks by users from site. these clickable task links which you&amp;#39;re suggesting, is it the same as we get in email as view task once that task is assigned to me? Can I configure url for their task?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76897?ContentTypeID=1</link><pubDate>Mon, 05 Oct 2020 16:30:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e6eddec1-eca2-4071-b2e6-ab1e2ce881c1</guid><dc:creator>monikas0003</dc:creator><description>&lt;p&gt;Thank you for your quick reply. Activity chaining will connect my screens and it will be done in one go. I have 3 screens to be worked by three different person. I have a page with process model that has that flow. users are assigned after each screen and that user needs to work on that particular screen.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76887?ContentTypeID=1</link><pubDate>Mon, 05 Oct 2020 15:02:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fb0c0deb-6b1b-4b34-9b28-238c4cb4880b</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Sites don&amp;#39;t inherently have a &amp;quot;task list&amp;quot; wherein a user would see an assigned task that they would need to accept (like when the new task is assigned to a group or a small list of users, etc).&amp;nbsp; Is this what you want?&amp;nbsp; Or are you expecting that the user would see the subsequent task immediately, as mentioned already by Danny above?&lt;/p&gt;
&lt;p&gt;If your desire is for users to see a &amp;quot;task list&amp;quot; that they can accept an assigned task (i.e. from an action previously kicked off by a different user in the same site), you will need to build a separate form in the site where a user&amp;#39;s currently assigned tasks are queried via a!queryProcessAnalytics, and then you can give them clickable task links to open their task and accept it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to navigate screens in site</title><link>https://community.appian.com/thread/76883?ContentTypeID=1</link><pubDate>Mon, 05 Oct 2020 14:42:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0386839a-6937-495f-8a46-0e5da31f8b86</guid><dc:creator>Danny Verb</dc:creator><description>&lt;p&gt;If you want all three forms to appear, you must activity chain them together in the process model&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/17.4/Configuring_Activity-Chaining.html"&gt;https://docs.appian.com/suite/help/17.4/Configuring_Activity-Chaining.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If they are activity chained but you&amp;#39;re still seeing this issue in Sites, it may be because one of your interfaces is a legacy form and not an Appian form made with SAIL.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>