<?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>Issue while converting value to upper case</title><link>https://community.appian.com/discussions/f/new-to-appian/27847/issue-while-converting-value-to-upper-case</link><description>Hi, 
 I am trying to convert the text which is entering into the textField into a upper case and trying to store into a ruleInput. 
 But, it is not working as expected. I am attaching the code here to get some experts advise. Thanks.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108332?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:53:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7f313d6b-76c1-47e2-a93d-44cb4ef70d22</guid><dc:creator>swapnar6405</dc:creator><description>&lt;p&gt;I have tested and it is working. But, requesting experts advise if this is the correct way of doing.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108331?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:33:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c7bf80dd-8be0-4408-9903-414149276faf</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;It does indeed look correct...have you not tested it to establish that is does work? That&amp;#39;s by far the best way of knowing...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108330?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:21:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:524cb6d4-97ee-41c1-947e-167dd7ed41a8</guid><dc:creator>swapnar6405</dc:creator><description>&lt;p&gt;Is this a right away. Not sure. Any comments from experts.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;a!localVariables(&lt;br /&gt; {&lt;br /&gt; a!columnsLayout(&lt;br /&gt; columns: a!columnLayout(&lt;br /&gt; contents: a!textField(&lt;br /&gt; label: &amp;quot;Name:&amp;quot;,&lt;br /&gt; value: ri!name,&lt;br /&gt; saveInto: &lt;strong&gt;a!save(&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; ri!name,&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; upper(save!value)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; )&lt;/strong&gt;&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108329?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:20:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6de89acd-e799-4c0c-95b0-b77cea2b8539</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;I was just fixing my post as you replied.&amp;nbsp; You need to update the saveInto, as specified above.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108328?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:16:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5c89c840-6340-4e94-9aaa-d11793b9785a</guid><dc:creator>swapnar6405</dc:creator><description>&lt;p&gt;Same is the issue even if I remove upper() function in the value. Whatever I am entering is disappearing.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;a!localVariables(&lt;br /&gt; {&lt;br /&gt; a!columnsLayout(&lt;br /&gt; columns: a!columnLayout(&lt;br /&gt; contents: a!textField(&lt;br /&gt; label: &amp;quot;Name:&amp;quot;,&lt;br /&gt; value: ri!name,&lt;br /&gt; saveInto: upper(ri!name)&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Issue while converting value to upper case</title><link>https://community.appian.com/thread/108327?ContentTypeID=1</link><pubDate>Wed, 22 Feb 2023 14:14:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9e4f202d-7323-421a-af19-e4b9ba377f92</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;remove the upper function from the value: parameter, and it should stay lower case until you focus on another component, or at least lose focus on your textField.&amp;nbsp; At that point, it should suddenly go full caps and be stored as such in the variable.&lt;/p&gt;
&lt;p&gt;Now I see, you&amp;#39;re trying to pass the value into the upper() function, rather than trying to pass it to a variable.&amp;nbsp; Your saveInto: should read :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;saveInto:&amp;nbsp; a!save(ri!name, upper(save!value))&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now you&amp;#39;re doing stuff in the right order, upper-ing the value as you save it to the variable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>