<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Flow Variable Issue in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2361464#M186025</link>
    <description>&lt;P&gt;This is a known issue with Chrome 105, our engineers are working on solving it asap. In the meantime, if you work/save/publish the same flow in a non-Chromium browser (Firefox for example) that should work.&lt;BR /&gt;If you have a login to our support portal, check out &lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB1182247" target="_blank" rel="noopener"&gt;this KB1182247&lt;/A&gt;&amp;nbsp;for details on the workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark as solved if this answered your question.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2022 14:59:19 GMT</pubDate>
    <dc:creator>Lisa Holenstein</dc:creator>
    <dc:date>2022-10-24T14:59:19Z</dc:date>
    <item>
      <title>Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/1170342#M126731</link>
      <description>&lt;H1&gt;Flow Variable Issue&lt;/H1&gt;
&lt;P&gt;I am Having Issues with Input Variables in Flow Actions in San Diego.&lt;/P&gt;
&lt;OL&gt;&lt;LI&gt;Anyone seen the same thing?&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;I have opened Case CS6252272&lt;/LI&gt;&lt;LI&gt;An Update Set illustrating the Problem is attached.&lt;/LI&gt;&lt;/OL&gt;
&lt;H2&gt;Problem Summary&lt;/H2&gt;
&lt;P&gt;A stray character with CharCode 65279 is being appended to all Variable Values of type Text which prevents the value being used in SN Queries and other use cases.&amp;nbsp; I don't know if this stray character is being appended to other variable types such as Reference values.&amp;nbsp; Possibly.&amp;nbsp; I am seeing some slightly erratic behavior.&lt;/P&gt;
&lt;H2&gt;Diagnostic Flow Action&lt;/H2&gt;
&lt;P&gt;To illustrate the Problem, I created a Flow Action with a Javascript Step. The Upddate Set is attached.&lt;/P&gt;
&lt;P&gt;The Flow Action has one input parameter called "My Text Variable" (my_text_variable) which is then used as input to my Step which contains this JavaScript Step.&lt;/P&gt;
&lt;H1&gt;Javascript&lt;/H1&gt;
&lt;P&gt;(function execute(inputs, outputs) {&lt;BR /&gt;&amp;nbsp; var messageText = "";&lt;BR /&gt;&amp;nbsp; var myTextVariable1 = inputs.my_text_variable;&lt;BR /&gt;&amp;nbsp; messageText += "\n myTextVariable1 = [" + myTextVariable1 + "]";&lt;BR /&gt;&amp;nbsp; messageText += "\n myTextVariable1.length = [" + myTextVariable1.length + "]";&lt;BR /&gt;&amp;nbsp; // There is a bug. Remove stray char at end of string.&lt;BR /&gt;&amp;nbsp; var x = String.fromCharCode(65279);&lt;BR /&gt;&amp;nbsp; var myTextVariable2 = myTextVariable1.replace(x,"");&lt;BR /&gt;&amp;nbsp; messageText += "\n myTextVariable2 = [" + myTextVariable2 + "]";&lt;BR /&gt;&amp;nbsp; messageText += "\n myTextVariable2.length = [" + myTextVariable2.length + "]";&lt;BR /&gt;&amp;nbsp; outputs.message_text = messageText;&lt;BR /&gt;})(inputs, outputs);&lt;/P&gt;
&lt;H1&gt;Output&lt;/H1&gt;
&lt;P&gt;I then Click on Test for the flow and enter "Hello" as the value for "My Text Variable" (my_text_variable).&lt;BR /&gt;This was my output.&lt;/P&gt;
&lt;PRE&gt; myTextVariable1 = [Hello]
 myTextVariable1.length = [6]
 myTextVariable2 = [Hello]
 myTextVariable2.length = [5]&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 03:59:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/1170342#M126731</guid>
      <dc:creator>dougconnell</dc:creator>
      <dc:date>2022-09-23T03:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/1170343#M126732</link>
      <description>&lt;P&gt;I recived a call from Support and we did a Zoom.&amp;nbsp; ServiceNow was not able to replicate the problem - even when they impersonated me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I still have the problem and ServiceNow support witnessed the issue.&amp;nbsp; I am not going crazy.&amp;nbsp; (Well maybe just a little).&lt;BR /&gt;&lt;BR /&gt;The problem seams to be only related to Chrome.&amp;nbsp; Chrome adds the 65279 character (Zero Width No-Break Space.) at the end of input variables that are typed in.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I tried Edge and did not get the problem.&amp;nbsp; I am using Chrome Version 105.0.5195.127 (Official Build) (32-bit).&lt;/P&gt;
&lt;P&gt;I tried Incognito mode.&amp;nbsp; I cleared my cache.&amp;nbsp; I even tried: Settings-&amp;gt;Reset and Clean up.&lt;BR /&gt;So far nothing has worked.&amp;nbsp; Chrome seams to add this stray character.&amp;nbsp; Edge works fine.&lt;/P&gt;
&lt;P&gt;Hummmmm.&amp;nbsp; Not sure what to do next.&lt;BR /&gt;I guess maybe I need to switch to using Edge exclusively for ServiceNow work?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 05:19:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/1170343#M126732</guid>
      <dc:creator>dougconnell</dc:creator>
      <dc:date>2022-09-23T05:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2360174#M186004</link>
      <description>&lt;P&gt;Hi, I have the same issue!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use chrome too&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any news on it?&amp;nbsp; If not Ill log it too with your case number&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 13:02:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2360174#M186004</guid>
      <dc:creator>pennieturner</dc:creator>
      <dc:date>2022-10-21T13:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2360327#M186009</link>
      <description>&lt;P&gt;Have the same issue with Chrome. It's a ral pain as the no-break space character can mess up JSON strings, which will fial to parse.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 14:51:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2360327#M186009</guid>
      <dc:creator>Mosh Jah_n1</dc:creator>
      <dc:date>2022-10-21T14:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2361464#M186025</link>
      <description>&lt;P&gt;This is a known issue with Chrome 105, our engineers are working on solving it asap. In the meantime, if you work/save/publish the same flow in a non-Chromium browser (Firefox for example) that should work.&lt;BR /&gt;If you have a login to our support portal, check out &lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB1182247" target="_blank" rel="noopener"&gt;this KB1182247&lt;/A&gt;&amp;nbsp;for details on the workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark as solved if this answered your question.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 14:59:19 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2361464#M186025</guid>
      <dc:creator>Lisa Holenstein</dc:creator>
      <dc:date>2022-10-24T14:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2377124#M186353</link>
      <description>&lt;P&gt;Update: this has been solved with Tokyo Patch 2, see the &lt;A href="https://docs.servicenow.com/bundle/tokyo-release-notes/page/release-notes/quality/tokyo-patch-2.html#d1332045e178" target="_blank" rel="noopener"&gt;section Notable Fixes for &lt;SPAN&gt;PRB1606387&lt;/SPAN&gt;&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 07:33:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2377124#M186353</guid>
      <dc:creator>Lisa Holenstein</dc:creator>
      <dc:date>2022-11-09T07:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2429929#M187424</link>
      <description>&lt;P&gt;I have the same problem too. However, mine was being appended at the front of the variable. Working using non-Chromium web browser doesn't help at all. My workaround was to remove it using .replace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Funny enough, I found the problem while working multi-approvals using an article that Lisa Holenstein created.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 15:49:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2429929#M187424</guid>
      <dc:creator>SyaharruddinCSC</dc:creator>
      <dc:date>2022-12-30T15:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Flow Variable Issue</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2741831#M192475</link>
      <description>&lt;P&gt;Hi Lisa,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rather annoyingly, the ServiceNow instance provided as part of the IntegrationHub Fundamentals course is Tokyo patch 1.&lt;/P&gt;&lt;P&gt;This /ufeff character breaks the Pagination Variables Script when building the the World Glaciers - LatLong Action, using Chrome 119 (latest build). It works in Firefox, but took me a moment to find the cause.&lt;/P&gt;&lt;P&gt;I'm reporting it to the NowLearning team.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 10:16:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/flow-variable-issue/m-p/2741831#M192475</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2023-11-23T10:16:59Z</dc:date>
    </item>
  </channel>
</rss>

