<?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 Could we change the incident notes to a rich text box? in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664585#M236364</link>
    <description>&lt;P&gt;Dear expert,&lt;/P&gt;&lt;P&gt;Is it possible to change the incident notes to a rich text box?&lt;/P&gt;&lt;P&gt;Then we can type texts and paste screenshots in one box.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2017 08:28:23 GMT</pubDate>
    <dc:creator>sam_yan</dc:creator>
    <dc:date>2017-05-22T08:28:23Z</dc:date>
    <item>
      <title>Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664585#M236364</link>
      <description>&lt;P&gt;Dear expert,&lt;/P&gt;&lt;P&gt;Is it possible to change the incident notes to a rich text box?&lt;/P&gt;&lt;P&gt;Then we can type texts and paste screenshots in one box.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 08:28:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664585#M236364</guid>
      <dc:creator>sam_yan</dc:creator>
      <dc:date>2017-05-22T08:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664586#M236365</link>
      <description>&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;You can achieve this by changing the type of the particular field to "HTML". This will let you insert the images in the field.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;For e.g, if you want to attach screenshots for the "additional comments" &amp;nbsp; or "work notes" field, then&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Right click the field name -&amp;gt; configure dictionary -&amp;gt; change the type to "HTML". &amp;nbsp; The option for "insert/edit image" will be available. You can choose the type as attachment . Browse the image and then click attach.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The image will be added in the additional comments/work notes field.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 May 2017 10:58:36 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664586#M236365</guid>
      <dc:creator>tarleen</dc:creator>
      <dc:date>2017-05-22T10:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664587#M236366</link>
      <description>&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The previous proposition would probably not achieve what you want because the additional comments need to be kept a journal field input.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The cleaner way to do it is to add a new custom field that would replace the existing additional comments field and to use that field to fill the additional comments.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;OL&gt;&lt;LI&gt;Create new field of type HTML (u_notes) on task table&lt;/LI&gt;&lt;LI&gt;On form layout replace the additional comments field by that new field&lt;/LI&gt;&lt;LI&gt;Create the following business rule&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Name: Populate additional comments from HTML&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Table: Task&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Advanced: True&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;When: before&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Order: 100&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Insert: true&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Update: true&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Filter conditions: Notes changes&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;BR /&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14954577275604133" data-renderedposition="397.20001220703125_8_1122_64" jivemacro_uid="_14954577275604133" modifiedtitle="true"&gt;&lt;P&gt;(function executeRule(current, previous /*null when async*/) {&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; current.comments = '[code]' + current.getValue('u_notes') + '[/code]';&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; current.u_notes = '';&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;})(current, previous);&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;However, this will not work with the Post button of the UI16.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 May 2017 13:01:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664587#M236366</guid>
      <dc:creator>LaurentChicoine</dc:creator>
      <dc:date>2017-05-22T13:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664588#M236367</link>
      <description>&lt;P&gt;It isn't a simple field. I would use Laurent's solution.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thank you all the same.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Jun 2017 06:15:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664588#M236367</guid>
      <dc:creator>sam_yan</dc:creator>
      <dc:date>2017-06-16T06:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664589#M236368</link>
      <description>&lt;P&gt;Thank you very much for your solution Laurent!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Jun 2017 06:16:35 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664589#M236368</guid>
      <dc:creator>sam_yan</dc:creator>
      <dc:date>2017-06-16T06:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664590#M236369</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;Is it working as expected ?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2020 05:58:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664590#M236369</guid>
      <dc:creator>nikhil_001</dc:creator>
      <dc:date>2020-10-08T05:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664591#M236370</link>
      <description>&lt;P&gt;Technically, we can say yes. But we give up finally. Because it took to much effort to adapt also SP, notification... Will wait for a complete solution from ServiceNow.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 01:59:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664591#M236370</guid>
      <dc:creator>sam_yan</dc:creator>
      <dc:date>2020-10-09T01:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664592#M236371</link>
      <description>&lt;P&gt;I implemented this , but Post button functionality disappeared as stated. Do we have anything in place so that we can get the POST button back&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 05:28:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664592#M236371</guid>
      <dc:creator>nikhil_001</dc:creator>
      <dc:date>2020-10-09T05:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664593#M236372</link>
      <description>&lt;P&gt;Hi Sam,&lt;/P&gt;
&lt;P&gt;Here you have another possibility&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_article&amp;amp;sys_id=a0c863dfdba83cd092bb0b55ca961992"&gt;HTML Rich editor (Tinymc) as journal field&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 16:20:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664593#M236372</guid>
      <dc:creator>ralvarez</dc:creator>
      <dc:date>2021-06-10T16:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: Could we change the incident notes to a rich text box?</title>
      <link>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664594#M236373</link>
      <description>&lt;P&gt;Hello Ralvarez,&lt;/P&gt;
&lt;P&gt;Thanks for the sharing. Good example!&lt;BR /&gt;Unfortunately, we reverted back to OOB. Because there're so many other places need to enhance as well. So we wait ServiceNow to implement it (as you can see, with the mobile app, user can upload picture/video).&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 03:19:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/could-we-change-the-incident-notes-to-a-rich-text-box/m-p/664594#M236373</guid>
      <dc:creator>sam_yan</dc:creator>
      <dc:date>2021-08-19T03:19:30Z</dc:date>
    </item>
  </channel>
</rss>

