<?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 Comments and worknote field on service operations workspace is not clearing in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3469855#M5855</link>
    <description>&lt;P&gt;Comments and worknote field on service operations workspace is not clearing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i add any test in comments and work note in SOW. click on save it is adding that comment in ticket but also the text is not getting clear in comments and work note field ServiceNow&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jan 2026 11:23:55 GMT</pubDate>
    <dc:creator>Shruti Bhosale</dc:creator>
    <dc:date>2026-01-19T11:23:55Z</dc:date>
    <item>
      <title>Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3469855#M5855</link>
      <description>&lt;P&gt;Comments and worknote field on service operations workspace is not clearing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i add any test in comments and work note in SOW. click on save it is adding that comment in ticket but also the text is not getting clear in comments and work note field ServiceNow&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 11:23:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3469855#M5855</guid>
      <dc:creator>Shruti Bhosale</dc:creator>
      <dc:date>2026-01-19T11:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3469863#M5856</link>
      <description>&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;This might&amp;nbsp; actually be a expected behavior in Service Operations Workspace, not a bug.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;In Workspace, Comments and Work Notes are journal fields, and after you click Save, the text you typed stays in the input box. It still gets added to the ticket’s activity stream, but the field itself doesn’t auto-clear like it does in Classic UI.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;Most of the time, this happens because Workspace keeps the last entered value on the client side so the user can quickly edit or resend it.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;If you want it to clear after saving, you can add a small Workspace Client Script to blank out those fields on submit.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;function onSubmit() {
   g_form.setValue('comments', '');
   g_form.setValue('work_notes', '');

}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;That will make the fields clear after save in Workspace.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;check these:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt; 1. Is the record really saved?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt;Refresh the record — you’ll see the note was added even though the text stays in the box.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="ServiceNowSansRegular" color="#1d1d1d"&gt;&lt;SPAN&gt; 2. Any custom client script/UI policy on those fields?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jan 2026 11:38:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3469863#M5856</guid>
      <dc:creator>RajC59005800307</dc:creator>
      <dc:date>2026-01-19T11:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3470565#M5864</link>
      <description>&lt;P&gt;I'm also seeing this. It looks like a bug after the Yokohama Patch 10 Hotfix 1 Update; it was fine last week..&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 10:07:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3470565#M5864</guid>
      <dc:creator>Ivan Betev</dc:creator>
      <dc:date>2026-01-20T10:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3471315#M5871</link>
      <description>&lt;P&gt;We are seeing the same thing - this was not the behavior we previously experienced, and then last night we patched to Yokohama Patch 10 Hotfix 1 - and today our agents are reporting this exact issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 19:57:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3471315#M5871</guid>
      <dc:creator>blakemolmen</dc:creator>
      <dc:date>2026-01-20T19:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3471761#M5876</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Most Probable Cause:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;PRB1973244 - [Yokohama patch 10] Texts does not cleared out from Journal fields (comments/ work notes) after clicking Save in the workspaces&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please note that you can now view the current status of the Problems associated to your Case by navigating to: Self Service -- Problems.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Solution Proposed:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The fix is available starting from Yokohama Patch 11, Yokohama Patch 12, and Zurich.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jan 2026 09:45:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3471761#M5876</guid>
      <dc:creator>Ivan Betev</dc:creator>
      <dc:date>2026-01-21T09:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Comments and worknote field on service operations workspace is not clearing</title>
      <link>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3475697#M5925</link>
      <description>&lt;P&gt;ServiceNow comments vs work notes usually trip people up at first. I’ve learned to treat comments as customer-facing updates and work notes as internal chatter for the team. Mixing them causes confusion fast. Clear usage keeps audits clean and avoids awkward moments where internal troubleshooting accidentally ends up visible to the requester. Once everyone sticks to the rule, collaboration feels much smoother.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 09:21:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/comments-and-worknote-field-on-service-operations-workspace-is/m-p/3475697#M5925</guid>
      <dc:creator>ashleyharve</dc:creator>
      <dc:date>2026-01-27T09:21:23Z</dc:date>
    </item>
  </channel>
</rss>

