<?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 copy from inciden task 'close notes' to parent incident worknotes in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3223663#M538292</link>
    <description>&lt;P&gt;Hi All ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to copy close notes from incident task (when its close complete) to parent incident record in worknotes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the before update with condition close notes changes business rule is used:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt; executeRule(current, previous &lt;/SPAN&gt;&lt;SPAN&gt;/*null when async*/&lt;/SPAN&gt;&lt;SPAN&gt; ) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Add your code here&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; lastWorkNote = current.close_notes.getJournalEntry(-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; parentInc = &lt;/SPAN&gt;&lt;SPAN&gt;new&lt;/SPAN&gt; &lt;SPAN&gt;GlideRecord&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'incident'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; parentInc.addQuery(&lt;/SPAN&gt;&lt;SPAN&gt;'sys_id'&lt;/SPAN&gt;&lt;SPAN&gt;, current.parent_incident);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; parentInc.query();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (parentInc.next()) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parentInc.work_notes = lastWorkNote;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parentInc.update();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;})(current, previous);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but its not getting copied as expected , please help me out !!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 01 Apr 2025 07:26:43 GMT</pubDate>
    <dc:creator>tushar_ghadage</dc:creator>
    <dc:date>2025-04-01T07:26:43Z</dc:date>
    <item>
      <title>copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3223663#M538292</link>
      <description>&lt;P&gt;Hi All ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to copy close notes from incident task (when its close complete) to parent incident record in worknotes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the before update with condition close notes changes business rule is used:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt; executeRule(current, previous &lt;/SPAN&gt;&lt;SPAN&gt;/*null when async*/&lt;/SPAN&gt;&lt;SPAN&gt; ) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;// Add your code here&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; lastWorkNote = current.close_notes.getJournalEntry(-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; parentInc = &lt;/SPAN&gt;&lt;SPAN&gt;new&lt;/SPAN&gt; &lt;SPAN&gt;GlideRecord&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'incident'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; parentInc.addQuery(&lt;/SPAN&gt;&lt;SPAN&gt;'sys_id'&lt;/SPAN&gt;&lt;SPAN&gt;, current.parent_incident);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; parentInc.query();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (parentInc.next()) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parentInc.work_notes = lastWorkNote;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parentInc.update();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;})(current, previous);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but its not getting copied as expected , please help me out !!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Apr 2025 07:26:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3223663#M538292</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-01T07:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224402#M538375</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you try the below code on incident_task table in before update BR the condition is State change to Closed complete&lt;/P&gt;&lt;PRE&gt;var lastWorkNote = current.close_notes.toString();

    var parentInc = new GlideRecord('incident');
    parentInc.addQuery('sys_id', current.incident);
    parentInc.query();

    if (parentInc.next()) {
        parentInc.work_notes = lastWorkNote;
        parentInc.update();
    }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark this as a solution and helpful if this resolves your query.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 15:20:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224402#M538375</guid>
      <dc:creator>_Gaurav</dc:creator>
      <dc:date>2025-04-01T15:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224443#M538380</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your approach is fine but just few mistakes.&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;lastWorkNote = current.close_notes.getJournalEntry(-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; &amp;nbsp;/// This is just a string field so you don't have to write getJournalEntry. This is use for journal field like work_notes.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;parentInc.addQuery('sys_id', current.parent_incident);&amp;nbsp; &amp;nbsp; //&amp;nbsp; The field name for incident reference field is incident in incident task task table.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;You can just use 5 lines of code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/) {

	// Add your code here

	var close_info = current.close_notes.toString();   // get the value of close notes
	var gr_inc = new GlideRecord("incident");
	gr_inc.get("sys_id",current.incident);
	gr_inc.work_notes = close_info;
	gr_inc.update();

	

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If my response helped, please hit the Thumb Icon and accept the solution so that it benefits future readers.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Rohit&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 15:49:39 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224443#M538380</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-04-01T15:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224455#M538384</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/ ) {

    if (current.getValue('incident')) {
        var incGr = current.incident.getRefRecord();
        incGr.work_notes = current.getValue('close_notes');
        incGr.update();
    }

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 16:02:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224455#M538384</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-04-01T16:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224498#M538387</link>
      <description>&lt;P&gt;not working&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 16:28:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224498#M538387</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-01T16:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224789#M538404</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;could you please share the screenshots of the configuration you've done?&lt;BR /&gt;the BR is on incident_task table only right?&lt;/P&gt;&lt;P&gt;whenever there is a change of close notes in the incident_task table the corresponding incident's work notes should be update correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can have an after update BR on incident task table with the shared script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_4-1743558708846.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431525iAD6D7796EAAA5F37/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_4-1743558708846.png" title="ChaitanyaILCR_4-1743558708846.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_1-1743558479632.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431522i1FCCCCFE9E6ECB93/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_1-1743558479632.png" title="ChaitanyaILCR_1-1743558479632.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_2-1743558531400.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431523iFE39D0C02D05F543/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_2-1743558531400.png" title="ChaitanyaILCR_2-1743558531400.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_3-1743558559169.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431524i4DF53346563FCA4B/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_3-1743558559169.png" title="ChaitanyaILCR_3-1743558559169.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 01:52:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224789#M538404</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-04-02T01:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224822#M538407</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;script shared by &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/24805"&gt;@Chaitanya ILCR&lt;/a&gt; should work fine.&lt;/P&gt;
&lt;P&gt;You can also use flow designer for this.&lt;/P&gt;
&lt;P&gt;share what did you configure and what debugging did you do?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 03:18:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224822#M538407</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-04-02T03:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224976#M538410</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/24805"&gt;@Chaitanya ILCR&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for you reply , its on incident_task table ,&lt;/P&gt;&lt;P&gt;i tried here are the SS :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (15).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431576i78BB31D71076F5FB/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (15).png" title="Screenshot (15).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (16).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431577iE0F259C34AC5B73F/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (16).png" title="Screenshot (16).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:17:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224976#M538410</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-02T06:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224983#M538411</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/24805"&gt;@Chaitanya ILCR&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried the same thing but its not working its on incident_task table :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (16).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431579iFE32449DB3E4BD2E/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (16).png" title="Screenshot (16).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (15).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431578i9D28E505E40D3E16/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (15).png" title="Screenshot (15).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:20:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224983#M538411</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-02T06:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224991#M538413</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is what i did :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (17).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431583iBC62A536CEE39CF7/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (17).png" title="Screenshot (17).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (18).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431582i8764CC58DD72F654/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (18).png" title="Screenshot (18).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (19).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431581i4EC520FD52C25E9F/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (19).png" title="Screenshot (19).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 06:23:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3224991#M538413</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-02T06:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225148#M538426</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please let me know if the issue persists, and if you can share the screenshots of the configuration that would help me rectify the problem.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 08:07:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225148#M538426</guid>
      <dc:creator>_Gaurav</dc:creator>
      <dc:date>2025-04-02T08:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225163#M538428</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/263515"&gt;@_Gaurav&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried replicating the same but it did not work , below are my config and test results :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (20).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431626i9B9DFAC7038EF3AC/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (20).png" title="Screenshot (20).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (21).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431627iCA0B2355C0B236C1/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (21).png" title="Screenshot (21).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;test results :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (15).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431620i7CB6981C92AE7E24/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (15).png" title="Screenshot (15).png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot (16).png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431621iA5F5DDADF2C6B7DF/image-size/medium?v=v2&amp;amp;px=400" alt="Screenshot (16).png" title="Screenshot (16).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 08:15:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225163#M538428</guid>
      <dc:creator>tushar_ghadage</dc:creator>
      <dc:date>2025-04-02T08:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225196#M538431</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you tell what's the issue you are facing?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure your BR is in Inicdent_task table and condition should be State Changes to "Closed Complete"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 08:38:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225196#M538431</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-04-02T08:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225748#M538474</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;For testing purpose, can you please remove the condition from the BR and just run on the UPDATE and try?&lt;BR /&gt;Also, can you replicate with my given code please?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Gaurav_0-1743603474679.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431767iDA8F08A02C607E23/image-size/medium?v=v2&amp;amp;px=400" alt="_Gaurav_0-1743603474679.png" title="_Gaurav_0-1743603474679.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_Gaurav_1-1743603503406.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431769i4B309DC198249BAF/image-size/medium?v=v2&amp;amp;px=400" alt="_Gaurav_1-1743603503406.png" title="_Gaurav_1-1743603503406.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Here is the screenshot of my configuration.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please mark this as a solution and helpful if this resolves your query.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 14:19:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225748#M538474</guid>
      <dc:creator>_Gaurav</dc:creator>
      <dc:date>2025-04-02T14:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225821#M538480</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Are you putting some values in your close notes ? &lt;EM&gt;Also in your snip you BR in inactive. Make it active.&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RohitSingh_1-1743606123060.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431785i2653074BEA4A348B/image-dimensions/564x219?v=v2" alt="RohitSingh_1-1743606123060.png" title="RohitSingh_1-1743606123060.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RohitSingh_2-1743606154144.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431786i81D988C537C31C21/image-dimensions/518x232?v=v2" alt="RohitSingh_2-1743606154144.png" title="RohitSingh_2-1743606154144.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Also you can try my code which I have mentioned earlier also.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current, previous /*null when async*/) {

	// Add your code here

	var close_info = current.close_notes.toString();   // get the value of close notes
	var gr_inc = new GlideRecord("incident");
	gr_inc.get("sys_id",current.incident);
	gr_inc.work_notes = close_info;
	gr_inc.update();

	

})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If my response helped, please hit the Thumb Icon and accept the solution so that it benefits future readers.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Rohit&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 15:07:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225821#M538480</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-04-02T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225827#M538481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Looks like you are updating the work notes of the incident task&lt;BR /&gt;you are suppose to update the close notes right?&lt;/P&gt;&lt;P&gt;what do you want to copy? incidents are close notes or work notes from incident task to incident&lt;/P&gt;&lt;P&gt;if it is close notes you can have follow below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_2-1743606363987.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431790i1AACE455B6478FC9/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_2-1743606363987.png" title="ChaitanyaILCR_2-1743606363987.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_3-1743606380415.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431791i936903A00962617F/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_3-1743606380415.png" title="ChaitanyaILCR_3-1743606380415.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if it is work notes follow below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_0-1743606259677.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431787iBDE668A9CB23676C/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_0-1743606259677.png" title="ChaitanyaILCR_0-1743606259677.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChaitanyaILCR_1-1743606291205.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/431788iC21B78B114D2FC4F/image-size/medium?v=v2&amp;amp;px=400" alt="ChaitanyaILCR_1-1743606291205.png" title="ChaitanyaILCR_1-1743606291205.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 15:07:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225827#M538481</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-04-02T15:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225836#M538482</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here also your Flow logic looks fine but your flow is not Activated. You need to activate the flow before using it. You can only use TEST without Activating the Flow.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If my response helped, please hit the Thumb Icon and accept the solution so that it benefits future readers.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Rohit&lt;/P&gt;</description>
      <pubDate>Wed, 02 Apr 2025 15:14:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3225836#M538482</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-04-02T15:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: copy from inciden task 'close notes' to parent incident worknotes</title>
      <link>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3227551#M538559</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831651"&gt;@tushar_ghadage&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you check my response?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In your snip your BR is not active.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If my response helped, then accept the solution and hit the thumbs up, so that it benefits the future reader and also me for your efforts towards the community.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 19:13:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/copy-from-inciden-task-close-notes-to-parent-incident-worknotes/m-p/3227551#M538559</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-04-03T19:13:27Z</dc:date>
    </item>
  </channel>
</rss>

