<?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/"><channel><title>KB-2003 Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>KB-2003 Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links</link><pubDate>Fri, 20 Sep 2019 04:10:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Current Revision posted to Appian Knowledge Base by Parmida Borhani on 9/20/2019 4:10:04 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the Quick App, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-11/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated Quick App interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the Quick App, click the &lt;code&gt;&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;&amp;nbsp;link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &lt;code&gt;UserRecordLink&lt;/code&gt; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>KB-2003 Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/30</link><pubDate>Fri, 20 Sep 2019 04:10:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 30 posted to Appian Knowledge Base by Parmida Borhani on 9/20/2019 4:10:04 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the Quick App, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated Quick App interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the Quick App, click the &lt;code&gt;&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;&amp;nbsp;link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &lt;code&gt;UserRecordLink&lt;/code&gt; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/29</link><pubDate>Thu, 19 Sep 2019 11:45:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 29 posted to Appian Knowledge Base by James Lee on 9/19/2019 11:45:00 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the Quick App, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated Quick App interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the Quick App, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/28</link><pubDate>Thu, 19 Sep 2019 11:44:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 28 posted to Appian Knowledge Base by James Lee on 9/19/2019 11:44:40 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated Quick App interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the Quick App, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/27</link><pubDate>Thu, 19 Sep 2019 11:43:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 27 posted to Appian Knowledge Base by James Lee on 9/19/2019 11:43:46 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/26</link><pubDate>Thu, 19 Sep 2019 11:43:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 26 posted to Appian Knowledge Base by James Lee on 9/19/2019 11:43:24 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt;&amp;nbsp;The best way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/25</link><pubDate>Thu, 19 Sep 2019 07:20:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 25 posted to Appian Knowledge Base by Parmida Borhani on 9/19/2019 7:20:34 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required. The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;a!gridColumn(&lt;br /&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;br /&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;br /&gt; value: a!linkField(&lt;br /&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;br /&gt; rule!XXXXX_UserRecordLink(&lt;br /&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;br /&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; )&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/24</link><pubDate>Thu, 19 Sep 2019 07:15:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 24 posted to Appian Knowledge Base by Parmida Borhani on 9/19/2019 7:15:06 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required. The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, application design, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick App "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/23</link><pubDate>Thu, 19 Sep 2019 07:14:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 23 posted to Appian Knowledge Base by Parmida Borhani on 9/19/2019 7:14:31 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a Quick App (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required. The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/22</link><pubDate>Wed, 18 Sep 2019 11:47:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 22 posted to Appian Knowledge Base by James Lee on 9/18/2019 11:47:07 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Replace the code for the user grid column with&amp;nbsp;the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required. The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/21</link><pubDate>Wed, 18 Sep 2019 11:45:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 21 posted to Appian Knowledge Base by James Lee on 9/18/2019 11:45:22 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Add the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/20</link><pubDate>Wed, 18 Sep 2019 11:44:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 20 posted to Appian Knowledge Base by James Lee on 9/18/2019 11:44:21 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Add the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/19</link><pubDate>Wed, 18 Sep 2019 11:44:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 19 posted to Appian Knowledge Base by James Lee on 9/18/2019 11:44:01 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Add the following&amp;nbsp;code to remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;br /&gt;&lt;br /&gt;The easiest way to find the section of code that must be replaced is to search for &amp;quot;UserRecordLink&amp;quot; in the SAIL expression mode.&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/18</link><pubDate>Wed, 18 Sep 2019 02:40:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>Parmida Borhani</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 18 posted to Appian Knowledge Base by Parmida Borhani on 9/18/2019 2:40:15 AM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)), specifying a user field for the form, and submitting a data entry through the quick app, the following error is encountered:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the &amp;quot;Trends&amp;quot; tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and 19.3.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps, open issues&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/17</link><pubDate>Mon, 16 Sep 2019 12:42:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 17 posted to Appian Knowledge Base by James Lee on 9/16/2019 12:42:21 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the trends tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/16</link><pubDate>Fri, 13 Sep 2019 18:45:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 16 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:45:28 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the trends tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt;&amp;nbsp;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/15</link><pubDate>Fri, 13 Sep 2019 18:45:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 15 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:45:04 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the trends tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;() &lt;/code&gt;that is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/14</link><pubDate>Fri, 13 Sep 2019 18:44:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 14 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:44:30 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The generated quick app interface for the trends tab has a format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;() that&lt;/code&gt; is wrapping the username parameter of the expression&amp;nbsp;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/13</link><pubDate>Fri, 13 Sep 2019 18:42:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 13 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:42:54 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;The format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;userfield&amp;gt;()&lt;/code&gt; is wrapping the username parameter of the expression&amp;nbsp;&lt;span&gt;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/12</link><pubDate>Fri, 13 Sep 2019 18:40:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 12 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:40:40 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page, after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;The format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;USER_FIELD&amp;gt;()&lt;/code&gt; is wrapping the username parameter of the expression&amp;nbsp;&lt;span&gt;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item><item><title>DRAFT KB-XXXX Quick app "Trends" tab fails to load when user field added due to invalid value for "links"</title><link>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links/revision/11</link><pubDate>Fri, 13 Sep 2019 18:38:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8995b279-e8be-4f2b-9781-f8618d5bf028</guid><dc:creator>James Lee</dc:creator><comments>https://community.appian.com/support/w/kb/1550/kb-2003-quick-app-trends-tab-fails-to-load-when-user-field-added-due-to-invalid-value-for-links#comments</comments><description>Revision 11 posted to Appian Knowledge Base by James Lee on 9/13/2019 6:38:47 PM&lt;br /&gt;
&lt;h2&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;After&amp;nbsp;creating a quick app (New Application --&amp;gt; Create Using Application Builder (Full)) and specifying a user field for the form, the below error is encountered when trying to land on the created &amp;quot;Trends&amp;quot; page after submitting a data entry through the quick app:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " border="0" src="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-13/Quick-App-Image.PNG" /&gt;&lt;/p&gt;
&lt;pre&gt;&lt;span&gt;&amp;quot;Expression evaluation error at function a!gridField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: A grid component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;null&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;columns&amp;rdquo;. A grid column&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;lt;USER_FIELD&amp;gt;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has encountered an error. Expression evaluation error at function a!linkField&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[line XXX]&lt;/span&gt;&lt;span&gt;: An AnyLinkField component&amp;nbsp;&lt;/span&gt;&lt;span class="error"&gt;[label=&amp;ldquo;&amp;rdquo;]&lt;/span&gt;&lt;span&gt;&amp;nbsp;has an invalid value for &amp;ldquo;links&amp;rdquo;. The array of links cannot have null items.&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This issue has been reported to the Appian Product Team. The reference number for this issue is&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;AN-140630.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Navigate to the interface for the &amp;quot;Trends&amp;quot; tab &lt;code&gt;*_All&amp;lt;Record_Singular&amp;gt;&lt;/code&gt;:&amp;nbsp;to find the interface, open&amp;nbsp;the site object for the quick app, click the &amp;quot;&amp;lt;Record_Singular&amp;gt;&amp;quot; link&amp;nbsp;within the&amp;nbsp;Content column under the Pages section, and then open the Interface object.&lt;/li&gt;
&lt;li&gt;The format username expression &lt;code&gt;rule!IST_FormatName(fv!row.&amp;lt;USER_FIELD&amp;gt;()&lt;/code&gt; is wrapping the username parameter of the expression&amp;nbsp;&lt;span&gt;&lt;code&gt;rule!IST_UserRecordLink()&lt;/code&gt; rather than the label parameter. The below code will remediate&amp;nbsp;the&amp;nbsp;issue, as well as perform a null check in case the user field is not set to required:&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;code&gt; a!gridColumn(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; label: &amp;quot;&amp;lt;User_Field&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; sortField: &amp;quot;&amp;lt;userfield&amp;gt;&amp;quot;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; value: a!linkField(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; links: {if(isnull(fv!row.&amp;lt;userfield&amp;gt;),{},&lt;/code&gt;&lt;br /&gt;&lt;code&gt; rule!XXXXX_UserRecordLink(&lt;/code&gt;&lt;br /&gt;&lt;code&gt; fv!row.&amp;lt;userfield&amp;gt;,&lt;/code&gt;&lt;br /&gt;&lt;code&gt; XXXXX_FormatName(fv!row.&amp;lt;userfield&amp;gt;)&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; }&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;br /&gt;&lt;code&gt; )&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This article applies to Appian 19.2 and Appian 19.3:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed: September 2019&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: known issues, expression rules, interfaces, Quick Apps&lt;/div&gt;
</description></item></channel></rss>