<?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: Approval Comments on Task list view in Virtual Agent forum</title>
    <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259077#M17698</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/190497"&gt;@Nilesh Pol&lt;/a&gt;&amp;nbsp;, Thanks for the response, currently I am trying your suggestion will share the output&lt;/P&gt;</description>
    <pubDate>Fri, 09 May 2025 09:38:13 GMT</pubDate>
    <dc:creator>Community Alums</dc:creator>
    <dc:date>2025-05-09T09:38:13Z</dc:date>
    <item>
      <title>Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259037#M17692</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to show the Approval comments added while approving the task on the task list view as of now I can only see Approval history field which give complete approval history but I want the latest one on the task list view is it possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prudhvi&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 08:59:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259037#M17692</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2025-05-09T08:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259039#M17693</link>
      <description>&lt;P&gt;@Community Alums&amp;nbsp;Yes, you can display the latest approval comments on the task list view in ServiceNow, but it requires a bit of configuration since this data comes from the related sysapproval_approver table, not directly from the task itself.&lt;/P&gt;&lt;P&gt;Create a new field on the task table (e.g., Latest Approval Comment).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Type: String&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Mark it as Calculated.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Use this calculated script:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;var comment = '';&lt;BR /&gt;var gr = new GlideRecord('sysapproval_approver');&lt;BR /&gt;gr.addQuery('sysapproval', current.sys_id);&lt;BR /&gt;gr.orderByDesc('sys_updated_on');&lt;BR /&gt;gr.setLimit(1);&lt;BR /&gt;gr.query();&lt;BR /&gt;if (gr.next()) {&lt;BR /&gt;comment = gr.comments;&lt;BR /&gt;}&lt;BR /&gt;answer = comment;&lt;/P&gt;&lt;P&gt;finally, Add this field to your list layout in the list view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:04:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259039#M17693</guid>
      <dc:creator>Nilesh Pol</dc:creator>
      <dc:date>2025-05-09T09:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259050#M17694</link>
      <description>&lt;P&gt;@Community Alums&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RITM is approved/rejected by approver and not task record.&lt;/P&gt;
&lt;P&gt;what's your exact requirement?&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:14:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259050#M17694</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-05-09T09:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259051#M17695</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;&amp;nbsp;, I have custom application where I have a custom table as parent table and an extended table from task which will hold the child task and these child task will have the approvals attached on this task list I want to show the approval comments&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:17:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259051#M17695</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2025-05-09T09:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259060#M17696</link>
      <description>&lt;P&gt;@Community Alums&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then no other way but to create a custom string field to hold the approval comment&lt;/P&gt;
&lt;P&gt;Populate that when task is approved&lt;/P&gt;
&lt;P&gt;Then add this field in the list layout of task table you want&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:25:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259060#M17696</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-05-09T09:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259073#M17697</link>
      <description>&lt;P&gt;@Community Alums&amp;nbsp;Did you verified the this response, let us know what challenge you are facing?&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:35:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259073#M17697</guid>
      <dc:creator>Nilesh Pol</dc:creator>
      <dc:date>2025-05-09T09:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Approval Comments on Task list view</title>
      <link>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259077#M17698</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/190497"&gt;@Nilesh Pol&lt;/a&gt;&amp;nbsp;, Thanks for the response, currently I am trying your suggestion will share the output&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 09:38:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/virtual-agent-forum/approval-comments-on-task-list-view/m-p/3259077#M17698</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2025-05-09T09:38:13Z</dc:date>
    </item>
  </channel>
</rss>

