<?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 Re: Fields Parsing from XML in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754317#M58141</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/65059"&gt;@Rehan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are some issues with the sample data, I highlighted them:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Issues&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;lt;ns:getHistoryResponse xmlns:ns="&lt;/STRONG&gt;&lt;/FONT&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-App-Development/Fields-Parsing-from-XML/td-p/1754313" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;http://Mywebsite.com/xsd"&amp;gt;&amp;lt;ns:return&amp;gt;&lt;/STRONG&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;?xml&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;version="1.0" encoding="UTF-8"?&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;RESULTS&lt;/FONT&gt;&lt;/STRONG&gt;&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;STATUS MESSAGE="Normal Completion"&amp;gt;Success&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;/STATUS&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;AUTH_HISTORIES&lt;/STRONG&gt;&lt;/FONT&gt;&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-04-06 13:14:19" FIELDS="ATO Upcoming" NEW_VALUE="07/31/2015" OLD_VALUE="01/23/2018" SYSTEM_ID="9388"/&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-08-14 13:21:36" FIELDS="ATO Status" NEW_VALUE="ATO (1yr)" OLD_VALUE="Expired" SYSTEM_ID="9388"/&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-08-14 13:21:37" FIELDS="ATO Upcoming" NEW_VALUE="08/14/2016" OLD_VALUE="07/31/2015"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;/&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Red Text&lt;/STRONG&gt;&lt;/FONT&gt;:&amp;nbsp; You do not need the ns:getHistoryResponse and ns:return&amp;gt; as part of the XML data for Qlik to load it.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Orange Text&lt;/STRONG&gt;&lt;/FONT&gt;: You should convert &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt; to &amp;lt; (yes, the lower than sign &amp;lt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Green Text:&lt;/STRONG&gt;&lt;/FONT&gt; This tags are missing their closing tag; perhaps they disappeared&amp;nbsp;when you pasted the code.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Blue Text:&lt;/STRONG&gt;&lt;/FONT&gt; the tag was not close.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Once these issues are fixed, your file should look as shown below:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;RESULTS&amp;gt;
&amp;lt;STATUS MESSAGE="Normal Completion"&amp;gt;Success&amp;lt;/STATUS&amp;gt;
&amp;lt;AUTH_HISTORIES&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-04-06 13:14:19" FIELDS="ATO Upcoming" NEW_VALUE="07/31/2015" OLD_VALUE="01/23/2018" SYSTEM_ID="9388"/&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:36" FIELDS="ATO Status" NEW_VALUE="ATO (1yr)" OLD_VALUE="Expired" SYSTEM_ID="9388"/&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:37" FIELDS="ATO Upcoming" NEW_VALUE="08/14/2016" OLD_VALUE="07/31/2015"/&amp;gt;
&amp;lt;/AUTH_HISTORIES&amp;gt;
&amp;lt;/RESULTS&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The file above load fine, this is the load script for it:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Auth_History:
LOAD
    DATES,
    "FIELDS",
    NEW_VALUE,
    OLD_VALUE,
    SYSTEM_ID,
    %Key_RESULTS_30D6815018607F0E
FROM [lib://DataFiles/XML_Data_Good.xml]
(XmlSimple, table is [RESULTS/AUTH_HISTORIES/AUTH_HISTORY]);
NoConcatenate
Results:
LOAD
    STATUS,
    "STATUS/MESSAGE",
    %Key_RESULTS_30D6815018607F0E
FROM [lib://DataFiles/XML_Data_Good.xml]
(XmlSimple, table is RESULTS);&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;This is the data model for your file:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="02.XML-DataModel-01.png" style="width: 692px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/42688i717F78D7DB041F7F/image-size/large?v=v2&amp;amp;px=999" role="button" title="02.XML-DataModel-01.png" alt="02.XML-DataModel-01.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2020 03:53:22 GMT</pubDate>
    <dc:creator>ArnadoSandoval</dc:creator>
    <dc:date>2020-10-21T03:53:22Z</dc:date>
    <item>
      <title>Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754313#M58140</link>
      <description>&lt;P&gt;I am using Qlik Sense April 2020 Patch 8 Enterprise. I have pulled in the data from API in the form of a XML string as below(Sample)&lt;/P&gt;&lt;P&gt;&amp;lt;ns:getHistoryResponse xmlns:ns="&lt;A href="https://community.qlik.com/" target="_blank"&gt;http://Mywebsite.com/xsd"&amp;gt;&amp;lt;ns:return&amp;gt;&amp;amp;lt;?xml&lt;/A&gt; version="1.0" encoding="UTF-8"?&amp;gt;&amp;amp;lt;RESULTS&amp;gt;&amp;amp;lt;STATUS MESSAGE="Normal Completion"&amp;gt;Success&amp;amp;lt;/STATUS&amp;gt;&amp;amp;lt;AUTH_HISTORIES&amp;gt;&amp;amp;lt;AUTH_HISTORY DATES="2015-04-06 13:14:19" FIELDS="ATO Upcoming" NEW_VALUE="07/31/2015" OLD_VALUE="01/23/2018" SYSTEM_ID="9388"/&amp;gt;&amp;amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:36" FIELDS="ATO Status" NEW_VALUE="ATO (1yr)" OLD_VALUE="Expired" SYSTEM_ID="9388"/&amp;gt;&amp;amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:37" FIELDS="ATO Upcoming" NEW_VALUE="08/14/2016" OLD_VALUE="07/31/2015".&lt;/P&gt;&lt;P&gt;My Auto Generated script is as below&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;XMLString&lt;BR /&gt;FROM [lib://My Connection]&lt;BR /&gt;(XmlSimple, table is getHistoryResponse);&lt;/P&gt;&lt;P&gt;I would like to parse out the below fields from the above XML. How I can accomplish that&lt;/P&gt;&lt;P&gt;LOAD SYSTEM_ID,&lt;BR /&gt;OLD_VALUE,&lt;BR /&gt;NEW_VALUE,&lt;BR /&gt;FIELDS,&lt;BR /&gt;DATES;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 02:22:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754313#M58140</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-10-21T02:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754317#M58141</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/65059"&gt;@Rehan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are some issues with the sample data, I highlighted them:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Issues&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;lt;ns:getHistoryResponse xmlns:ns="&lt;/STRONG&gt;&lt;/FONT&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-App-Development/Fields-Parsing-from-XML/td-p/1754313" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;http://Mywebsite.com/xsd"&amp;gt;&amp;lt;ns:return&amp;gt;&lt;/STRONG&gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;?xml&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;version="1.0" encoding="UTF-8"?&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;RESULTS&lt;/FONT&gt;&lt;/STRONG&gt;&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;STATUS MESSAGE="Normal Completion"&amp;gt;Success&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;/STATUS&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;AUTH_HISTORIES&lt;/STRONG&gt;&lt;/FONT&gt;&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-04-06 13:14:19" FIELDS="ATO Upcoming" NEW_VALUE="07/31/2015" OLD_VALUE="01/23/2018" SYSTEM_ID="9388"/&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-08-14 13:21:36" FIELDS="ATO Status" NEW_VALUE="ATO (1yr)" OLD_VALUE="Expired" SYSTEM_ID="9388"/&amp;gt;&lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt;AUTH_HISTORY DATES="2015-08-14 13:21:37" FIELDS="ATO Upcoming" NEW_VALUE="08/14/2016" OLD_VALUE="07/31/2015"&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;/&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Red Text&lt;/STRONG&gt;&lt;/FONT&gt;:&amp;nbsp; You do not need the ns:getHistoryResponse and ns:return&amp;gt; as part of the XML data for Qlik to load it.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Orange Text&lt;/STRONG&gt;&lt;/FONT&gt;: You should convert &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&amp;amp;lt;&lt;/STRONG&gt;&lt;/FONT&gt; to &amp;lt; (yes, the lower than sign &amp;lt;)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Green Text:&lt;/STRONG&gt;&lt;/FONT&gt; This tags are missing their closing tag; perhaps they disappeared&amp;nbsp;when you pasted the code.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Blue Text:&lt;/STRONG&gt;&lt;/FONT&gt; the tag was not close.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Once these issues are fixed, your file should look as shown below:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;RESULTS&amp;gt;
&amp;lt;STATUS MESSAGE="Normal Completion"&amp;gt;Success&amp;lt;/STATUS&amp;gt;
&amp;lt;AUTH_HISTORIES&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-04-06 13:14:19" FIELDS="ATO Upcoming" NEW_VALUE="07/31/2015" OLD_VALUE="01/23/2018" SYSTEM_ID="9388"/&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:36" FIELDS="ATO Status" NEW_VALUE="ATO (1yr)" OLD_VALUE="Expired" SYSTEM_ID="9388"/&amp;gt;
&amp;lt;AUTH_HISTORY DATES="2015-08-14 13:21:37" FIELDS="ATO Upcoming" NEW_VALUE="08/14/2016" OLD_VALUE="07/31/2015"/&amp;gt;
&amp;lt;/AUTH_HISTORIES&amp;gt;
&amp;lt;/RESULTS&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The file above load fine, this is the load script for it:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Auth_History:
LOAD
    DATES,
    "FIELDS",
    NEW_VALUE,
    OLD_VALUE,
    SYSTEM_ID,
    %Key_RESULTS_30D6815018607F0E
FROM [lib://DataFiles/XML_Data_Good.xml]
(XmlSimple, table is [RESULTS/AUTH_HISTORIES/AUTH_HISTORY]);
NoConcatenate
Results:
LOAD
    STATUS,
    "STATUS/MESSAGE",
    %Key_RESULTS_30D6815018607F0E
FROM [lib://DataFiles/XML_Data_Good.xml]
(XmlSimple, table is RESULTS);&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;This is the data model for your file:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="02.XML-DataModel-01.png" style="width: 692px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/42688i717F78D7DB041F7F/image-size/large?v=v2&amp;amp;px=999" role="button" title="02.XML-DataModel-01.png" alt="02.XML-DataModel-01.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 03:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754317#M58141</guid>
      <dc:creator>ArnadoSandoval</dc:creator>
      <dc:date>2020-10-21T03:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754319#M58142</link>
      <description>&lt;P&gt;Thnx for the response, can you pls upload the QVF?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 04:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754319#M58142</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-10-21T04:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754944#M58201</link>
      <description>&lt;P&gt;The actual Code is&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&amp;lt;?xml version=""1.0"" encoding=""UTF-8""?&amp;gt;&amp;lt;RESULTS&amp;gt;&amp;lt;STATUS MESSAGE=""Normal Completion""&amp;gt;Success&amp;lt;/STATUS&amp;gt;&amp;lt;AUTH_HISTORIES&amp;gt;&amp;lt;AUTH_HISTORY DATES=""2015-04-06 13:14:19"" FIELDS=""ATO Upcoming"" NEW_VALUE=""07/31/2015"" OLD_VALUE=""01/23/2018"" SYSTEM_ID=""9388""/&amp;gt;&amp;lt;AUTH_HISTORY DATES=""2015-08-14 13:21:36"" FIELDS=""ATO Status"" NEW_VALUE=""ATO (1yr)"" OLD_VALUE=""Expired"" SYSTEM_ID=""9388""/&amp;gt;&amp;lt;AUTH_HISTORY DATES=""2015-08-14 13:21:37"" FIELDS=""ATO Upcoming"" NEW_VALUE=""08/14/2016"" OLD_VALUE=""07/31/2015""&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 12:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1754944#M58201</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-10-22T12:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1755378#M58243</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/65059"&gt;@Rehan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not receive any notification from your reply, I guess you should include my tag&amp;nbsp;@ArnaldoSandoval when writing your reply.&lt;/P&gt;&lt;P&gt;I am attaching the XML file (as a zip file)&amp;nbsp; as well as my Test application, NOTE: just look at the script, as I did not create any sheet with your data.&lt;/P&gt;&lt;P&gt;Now regarding the sample data in your last reply, for unknown reason all the values are enclosed in double-double quote, like ""ATO Upcoming"" instead of "ATO Upcoming", your last AUTH_HISTORY is not complete, it is missing /&amp;gt; and your are not closing the AUTH_HISTORIES and RESULT tags.&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 11:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1755378#M58243</guid>
      <dc:creator>ArnadoSandoval</dc:creator>
      <dc:date>2020-10-23T11:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fields Parsing from XML</title>
      <link>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1755399#M58246</link>
      <description>&lt;P&gt;I am getting the double quotes when I am storing it as a xml file. If I save it as a .txt I am good but saving as txt is adding the single Quote at the start and end of the document. Is there a way I can get rid of that single quote.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see the attached screen shot.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 12:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fields-Parsing-from-XML/m-p/1755399#M58246</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-10-23T12:24:07Z</dc:date>
    </item>
  </channel>
</rss>

