<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Validation textField</title><link>https://community.appian.com/discussions/f/new-to-appian/24059/validation-textfield</link><description>IHelo, 
 I new in Appian, and, I need to validate that in a texfield, the user on type characters,, I mean (oaoa, mama, ect), NO number. 
 is there a special functions? 
 
 Could you hlp me please?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92777?ContentTypeID=1</link><pubDate>Fri, 25 Mar 2022 16:35:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b932000c-09fe-46d2-892b-44b007dfd0f1</guid><dc:creator>sn25</dc:creator><description>&lt;p&gt;Will check it. Thanks Gopal&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92768?ContentTypeID=1</link><pubDate>Fri, 25 Mar 2022 14:15:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:23b4dfee-c4b4-4052-9430-6231f94d5e13</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Hi Sandhya, Please see below code, basically it checks whether a value exists or not in the array irrespective case, here main idea is to convert both array and value&amp;nbsp; in upper or lower case to make common case.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  /* list of suppliers */
  local!supplierList: { &amp;quot;Dell&amp;quot;, &amp;quot;Lenovo&amp;quot;, &amp;quot;Hp&amp;quot; },
  /* Checks whether provided value exists or not in the given array */
  contains(
    touniformstring(
      a!forEach(
        items: local!supplierList,
        expression: upper(fv!item)
      )
    ),
    upper(&amp;quot;dell&amp;quot;)
  )
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Replace array and value according to your data.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92766?ContentTypeID=1</link><pubDate>Fri, 25 Mar 2022 13:22:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a6b4a9d8-91ef-4934-84ab-86fcd6eb3903</guid><dc:creator>sn25</dc:creator><description>&lt;p&gt;In a Supplier Name textfield, When adding a new supplier, I am checking if the Supplier Name already exists. But there could be cases where users can enter dell and its still been accepted as a new supplier when a supplier Name &amp;quot;Dell&amp;quot; already exists.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How to resolve this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92721?ContentTypeID=1</link><pubDate>Fri, 25 Mar 2022 02:40:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4eee3a23-254d-4d26-9c77-086d67d6b3ca</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Hi Sandhya, could you please elaborate your use case? Where do you want to check duplicates? Are there two fields?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92707?ContentTypeID=1</link><pubDate>Thu, 24 Mar 2022 19:25:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a9ca2847-ff01-48a6-b077-f745ccb196b6</guid><dc:creator>sn25</dc:creator><description>&lt;p&gt;Hi Gopal,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am checking for Duplicates. How to validate &amp;quot;Dell&amp;quot; and &amp;quot;dell&amp;quot;? Right now, the text field is accepting both the entries.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92702?ContentTypeID=1</link><pubDate>Thu, 24 Mar 2022 15:10:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:15622cac-442d-448e-8909-50d434e092b4</guid><dc:creator>anad0004</dc:creator><description>&lt;p&gt;Thans..&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92699?ContentTypeID=1</link><pubDate>Thu, 24 Mar 2022 14:11:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5996d5fa-82ad-42bc-872c-92614be8fa3b</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Hi , You can use below expression for your validation parameter, let me know if it helps.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;if(
  a!isNullOrEmpty(
    tointeger(ri!text)
  ),
  null,
  &amp;quot;Please enter characters only&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Validation textField</title><link>https://community.appian.com/thread/92697?ContentTypeID=1</link><pubDate>Thu, 24 Mar 2022 14:08:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:015136b0-e23e-4c57-b832-907f91d97858</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Try this:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/22.1/recipe-add-multiple-validation-rules-to-one-component.html"&gt;docs.appian.com/.../recipe-add-multiple-validation-rules-to-one-component.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>