<?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 Get some information from SAP in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271552#M101779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Feb 2012 13:55:28 GMT</pubDate>
    <dc:creator>pgalvezt</dc:creator>
    <dc:date>2012-02-10T13:55:28Z</dc:date>
    <item>
      <title>Get some information from SAP</title>
      <link>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271551#M101778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know how to separate information&amp;nbsp; from 1 row in 2 columns. The report download by SAP has this format. So I need to get 2 columns ID and Date from all information that coming from SAP. I put an Excel example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 12:50:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271551#M101778</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-02-10T12:50:30Z</dc:date>
    </item>
    <item>
      <title>Get some information from SAP</title>
      <link>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271552#M101779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 13:55:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271552#M101779</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-02-10T13:55:28Z</dc:date>
    </item>
    <item>
      <title>Get some information from SAP</title>
      <link>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271553#M101780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are probably some different approached to solve your problem, e.g. something like this might help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;LINE&lt;/P&gt;&lt;P&gt;4504385984 ZPI&amp;nbsp; 10077759&amp;nbsp;&amp;nbsp; CAMINOS DEL SOL S A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F25 27.09.2012&lt;/P&gt;&lt;P&gt;Product a&lt;/P&gt;&lt;P&gt;Product b&lt;/P&gt;&lt;P&gt;Product c&lt;/P&gt;&lt;P&gt;Product d&lt;/P&gt;&lt;P&gt;Product d&lt;/P&gt;&lt;P&gt;Product e&lt;/P&gt;&lt;P&gt;4504533448 ZPI&amp;nbsp; 10077282&amp;nbsp;&amp;nbsp; CLP GENERAL INDUSTRIES LTD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F81 21.01.2011&lt;/P&gt;&lt;P&gt;Product a&lt;/P&gt;&lt;P&gt;Product b&lt;/P&gt;&lt;P&gt;Product c&lt;/P&gt;&lt;P&gt;Product d&lt;/P&gt;&lt;P&gt;Product e&lt;/P&gt;&lt;P&gt;Product f&lt;/P&gt;&lt;P&gt;Product g&lt;/P&gt;&lt;P&gt;Product h&lt;/P&gt;&lt;P&gt;Product i&lt;/P&gt;&lt;P&gt;4504533443 ZPI&amp;nbsp; 10077282&amp;nbsp;&amp;nbsp; CLP GENERAL INDUSTRIES LTD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F81 21.01.2012&lt;/P&gt;&lt;P&gt;Product a&lt;/P&gt;&lt;P&gt;Product b&lt;/P&gt;&lt;P&gt;Product c&lt;/P&gt;&lt;P&gt;Product d&lt;/P&gt;&lt;P&gt;Product e&lt;/P&gt;&lt;P&gt;Product f&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;subfield(LINE,' ',1) as ID, &lt;/P&gt;&lt;P&gt;right(LINE,10) as Date&lt;/P&gt;&lt;P&gt; Resident INPUT where isnum(left(LINE,10));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you need a where clause with a condition that spearates your lines you want to parse from the product lines.&lt;/P&gt;&lt;P&gt;Maybe just check if the first ten characters are numerical.&lt;/P&gt;&lt;P&gt;Then you could parse your lines e.g. by using subfield and right() functions. The date will be correctly parsed if your date format is matching the input format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 14:09:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-some-information-from-SAP/m-p/271553#M101780</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-02-10T14:09:25Z</dc:date>
    </item>
  </channel>
</rss>

