<?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>topic Update comment to show in report in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Update-comment-to-show-in-report/m-p/1546817#M745547</link>
    <description>&lt;P&gt;Quick synopsis.&lt;/P&gt;&lt;P&gt;I have a report that I ingest into QlikView each week on a Monday e.g . 11/02/2019.&amp;nbsp;This then creates a NPrinting report. Within this report&amp;nbsp;are two blank column called Action Status and Comment. Users fill these in. This then is fed back into QlikView with the Comments and Action Status on a Friday 15/02/2019 and concatenated to the original QVD.&lt;/P&gt;&lt;P&gt;My problem is the following Monday. When I look at the week max(date), I don't see in the QVD that the Comments and Action Status have been updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code below&lt;/P&gt;&lt;PRE&gt;[Comment]:
LOAD %Vulnerability,  
     Description, 
     Hostname, 
     Owner, 
     [Switched On],
     App, 
     [IP Address], 
     [First Detected], 
     [Last Detected], 
     [Remediation Date], 
     Severity, 
     [Upper Time Limit (Days)], 
     [CVSS Value], 
     DNS, 
     NetBIOS, 
     [Tracking Method], 
     [IP Status], 
     QID, 
     Title, 
     [Vuln Status], 
     Type, 
     Threat, 
     Impact, 
     Solution, 
     Exploitability, 
     Category, 
     [Action Status], 
     Comment,
     Date(Date#(left(SubField(FileName(), ' ', -1),10), 'YYYY-MM-DD'), 'DD/MM/YYYY') AS [Vulnerability Date]  
FROM
[$(vReport)\Vulnerability_Tracker *.xlsx]
(ooxml, embedded labels, table is Vulnerability_Tracker)where Comment &amp;lt;&amp;gt; NULL();

Concatenate

LOAD %Vulnerability, 
     Description, 
     Hostname, 
     Owner, 
     [Switched On],
     APP, 
     [IP Address], 
     [First Detected], 
     [Last Detected], 
     [Remediation Date], 
     Severity, 
     [Upper Time Limit (Days)], 
     [CVSS Value], 
     DNS, 
     NetBIOS, 
     [Tracking Method], 
     [IP Status], 
     QID, 
     Title, 
     [Vuln Status], 
     Type, 
     Threat, 
     Impact, 
     Solution, 
     Exploitability, 
     Category, 
     [Action Status], 
     Comment, 
     [Vulnerability Date]
FROM
[$(vQVDs)\Qualys.qvd]
(qvd) where not  Exists (%Vulnerability);

Store Comment into $(vQVDs)\Qualys.qvd;
//drop Table Comment;

&lt;/PRE&gt;&lt;PRE&gt;KeyTable:
LOAD
	 %Vulnerability,
	 [Vulnerability Date] 										as %Calendar

Resident Comment;


&lt;/PRE&gt;&lt;P&gt;Any reason why my comments and action status would not show up on the report.&lt;/P&gt;&lt;P&gt;The other thing is users will update comments during the following weeks NPrinting so it will append to the Comments and Action Status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help. Last part of the project to get working.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 21:22:38 GMT</pubDate>
    <dc:creator>bobbydave</dc:creator>
    <dc:date>2024-11-16T21:22:38Z</dc:date>
    <item>
      <title>Update comment to show in report</title>
      <link>https://community.qlik.com/t5/QlikView/Update-comment-to-show-in-report/m-p/1546817#M745547</link>
      <description>&lt;P&gt;Quick synopsis.&lt;/P&gt;&lt;P&gt;I have a report that I ingest into QlikView each week on a Monday e.g . 11/02/2019.&amp;nbsp;This then creates a NPrinting report. Within this report&amp;nbsp;are two blank column called Action Status and Comment. Users fill these in. This then is fed back into QlikView with the Comments and Action Status on a Friday 15/02/2019 and concatenated to the original QVD.&lt;/P&gt;&lt;P&gt;My problem is the following Monday. When I look at the week max(date), I don't see in the QVD that the Comments and Action Status have been updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code below&lt;/P&gt;&lt;PRE&gt;[Comment]:
LOAD %Vulnerability,  
     Description, 
     Hostname, 
     Owner, 
     [Switched On],
     App, 
     [IP Address], 
     [First Detected], 
     [Last Detected], 
     [Remediation Date], 
     Severity, 
     [Upper Time Limit (Days)], 
     [CVSS Value], 
     DNS, 
     NetBIOS, 
     [Tracking Method], 
     [IP Status], 
     QID, 
     Title, 
     [Vuln Status], 
     Type, 
     Threat, 
     Impact, 
     Solution, 
     Exploitability, 
     Category, 
     [Action Status], 
     Comment,
     Date(Date#(left(SubField(FileName(), ' ', -1),10), 'YYYY-MM-DD'), 'DD/MM/YYYY') AS [Vulnerability Date]  
FROM
[$(vReport)\Vulnerability_Tracker *.xlsx]
(ooxml, embedded labels, table is Vulnerability_Tracker)where Comment &amp;lt;&amp;gt; NULL();

Concatenate

LOAD %Vulnerability, 
     Description, 
     Hostname, 
     Owner, 
     [Switched On],
     APP, 
     [IP Address], 
     [First Detected], 
     [Last Detected], 
     [Remediation Date], 
     Severity, 
     [Upper Time Limit (Days)], 
     [CVSS Value], 
     DNS, 
     NetBIOS, 
     [Tracking Method], 
     [IP Status], 
     QID, 
     Title, 
     [Vuln Status], 
     Type, 
     Threat, 
     Impact, 
     Solution, 
     Exploitability, 
     Category, 
     [Action Status], 
     Comment, 
     [Vulnerability Date]
FROM
[$(vQVDs)\Qualys.qvd]
(qvd) where not  Exists (%Vulnerability);

Store Comment into $(vQVDs)\Qualys.qvd;
//drop Table Comment;

&lt;/PRE&gt;&lt;PRE&gt;KeyTable:
LOAD
	 %Vulnerability,
	 [Vulnerability Date] 										as %Calendar

Resident Comment;


&lt;/PRE&gt;&lt;P&gt;Any reason why my comments and action status would not show up on the report.&lt;/P&gt;&lt;P&gt;The other thing is users will update comments during the following weeks NPrinting so it will append to the Comments and Action Status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help. Last part of the project to get working.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Update-comment-to-show-in-report/m-p/1546817#M745547</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2024-11-16T21:22:38Z</dc:date>
    </item>
  </channel>
</rss>

