<?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>Readonly- Grid</title><link>https://community.appian.com/discussions/f/general/25244/readonly--grid</link><description>Hi, 
 am showing list of tasks in read only grid. which is showing data in grid for all users in DEV,UAT and STG but in Production users are not able to see it only few users (belongs to some grp) are able to see the grid 
 how can i find solution for</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98171?ContentTypeID=1</link><pubDate>Thu, 21 Jul 2022 15:41:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b0862e1c-08a9-4ed1-b42c-a4fdb19d5e37</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;What is the page size set to?&amp;nbsp; What happens if you try a smaller value for that?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98167?ContentTypeID=1</link><pubDate>Thu, 21 Jul 2022 14:54:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dbcdef42-1ee2-42bf-960d-d68efee677a8</guid><dc:creator>KM</dc:creator><description>&lt;p&gt;i guessed why it was not showing data in production, as per analysis this queryprocessanalysis is taking too much time. maybe just because of timeout it is not showing data&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98163?ContentTypeID=1</link><pubDate>Thu, 21 Jul 2022 13:14:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:72a2ba39-30c1-4f83-b39a-6588929f2847</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;What happens when you run just that QPA call in the expression rule editor?&amp;nbsp; Does the data you get back look right?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98155?ContentTypeID=1</link><pubDate>Thu, 21 Jul 2022 06:41:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1c8229a7-d7c8-494c-b5e4-c7e160bd25c5</guid><dc:creator>KM</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;a!queryProcessAnalytics(
      report: cons!CR_RPT_ACTIVE_TASKS_FOR_USER_REPORT,
      contextUsers: getdistinctusers(
        {
          cons!CR_GROUP_ALL_USERS
          /*cons!CR_GRP_RELATIONSHIP_MANAGER_GROUP,*/
          /*cons!CR_GRP_UNIT_HEAD_GROUP,*/
          /*cons!CR_GRP_SEGMENT_HEAD_GROUP*/
        }
      ),
      query:  a!query(
        logicalExpression: a!queryLogicalExpression(
          operator: &amp;quot;AND&amp;quot;,
          logicalExpressions: {
            a!queryLogicalExpression(
              operator: &amp;quot;OR&amp;quot;,
              filters: {
                a!forEach(
                  items: touniformstring(
                    {
                      cons!CR_TXT_ALL_PROCESS_MODEL_NAMES,
                      cons!CR_APP_TXT_ALL_PROCESS_MODEL_NAMES,
                      cons!CR_APP_LA_TXT_ALL_PROCESS_MODEL_NAMES,
                      cons!CR_CMU_TXT_ALL_PROCESS_MODEL_NAMES
                    }
                  ),
                  expression: {
                    a!queryFilter(
                      field: &amp;quot;c13&amp;quot;,
                      operator: &amp;quot;=&amp;quot;,
                      value: fv!item
                    )
                  }
                )
              }
            ),
            a!queryLogicalExpression(
              operator: &amp;quot;AND&amp;quot;,
              filters: {
                a!queryFilter(
                  field: &amp;quot;c0&amp;quot;,
                  operator: &amp;quot;includes&amp;quot;,
                  value: local!customerName_txt,
                  applyWhen: not(
                    isnull(
                      local!customerName_txt
                    )
                  )
                ),
                a!queryFilter(
                  field: &amp;quot;c1&amp;quot;,
                  operator: &amp;quot;in&amp;quot;,
                  value: local!status_txt,
                  applyWhen: not(
                    rule!APN_isEmpty(
                      local!status_txt
                    )
                  )
                ),
                a!queryFilter(
                  /*field: &amp;quot;c11&amp;quot;,*/
                  field: &amp;quot;c17&amp;quot;,
                  operator: &amp;quot;=&amp;quot;,
                  value: local!moduleId_int,
                  applyWhen: not(
                    rule!APN_isBlank(
                      local!moduleId_int
                    )
                  )
                ),
                a!queryFilter(
                  field: &amp;quot;c4&amp;quot;,
                  operator: &amp;quot;=&amp;quot;,
                  value: local!cif_int,
                  applyWhen: not(
                    isnull(
                      local!cif_int
                    )
                  )
                ),
                a!queryFilter(
                  field: &amp;quot;c5&amp;quot;,
                  operator: &amp;quot;&amp;gt;=&amp;quot;,
                  value: local!fromDate_dt,
                  applyWhen: not(
                    isnull(
                      local!fromDate_dt
                    )
                  )
                ),
                a!queryFilter(
                  field: &amp;quot;c5&amp;quot;,
                  operator: &amp;quot;&amp;lt;=&amp;quot;,
                  value: local!toDate_dt,
                  applyWhen: not(
                    isnull(
                      local!toDate_dt
                    )
                  )
                ),
                a!queryFilter(
                  field: &amp;quot;c2&amp;quot;,
                  operator: &amp;quot;=&amp;quot;,
                  value: local!originator_txt,
                  applyWhen: not(
                    isnull(
                      local!originator_txt
                    )
                  )
                )
              }
            )
          }
        ),
        pagingInfo: local!pagingInfo
      )
    )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;this is querry process analytics. this data only sending to to grid to show in read only mode&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98051?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 19:54:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9e360d66-4320-40f8-91bf-19ea9cdf7e47</guid><dc:creator>Shyam Bommakanti</dc:creator><description>&lt;p&gt;For a user to be able to view other user&amp;#39;s tasks they need at least viewer permission to the processes.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Please review &lt;a href="https://docs.appian.com/suite/help/22.2/process-model-object.html#managing-tasks" rel="noopener noreferrer" target="_blank"&gt;process instance security&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/98049?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 19:04:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:34b7556d-c3e3-41a8-a9cd-a0760cde502c</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;You cannot find the solution unless you provide more information about it.&amp;nbsp;&lt;br /&gt;Please attach all the relevant resources that can help us understand the problem and assist you.&amp;nbsp;&lt;br /&gt;It includes the code of the grid, code of the ER and any other screenshots of objects that are directly connected to this problem.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/97992?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 11:58:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f8e96369-abd1-45f9-90e4-0e1c1692f4ef</guid><dc:creator>deepakg681722</dc:creator><description>&lt;p&gt;please check the filters for queryprocessanalytics for those users. Maybe there are no tasks available for those some users.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/97991?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 11:57:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ea00d77b-e4fb-4fcc-97f8-58b5047aa0ff</guid><dc:creator>KM</dc:creator><description>&lt;p&gt;blank grid&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Readonly- Grid</title><link>https://community.appian.com/thread/97990?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 11:55:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e586151e-3454-43e4-9fa5-4e298296c1c5</guid><dc:creator>deepakg681722</dc:creator><description>&lt;p&gt;are you getting any issues there or there is a blank grid?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>