<?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: read json Field from QVD Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764772#M591513</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;MayilVahanan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i change the code to this one bellow, but it didn't work , there is a problem with the&amp;nbsp;GenericDB Table&amp;nbsp;&lt;/P&gt;&lt;P&gt;:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;________________&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;Load *,id &amp;amp; Name &amp;amp;creatDate&amp;nbsp;as Key, SubField(T,':', 1) as Column, SubField(T,':',2) as Value;&lt;/P&gt;&lt;P&gt;Load *, SubField(PurgeChar(Propereties,'{}"'), ',') as T&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[C:\Desktop\Example.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GenericDB:&lt;BR /&gt;Generic LOAD Key, Column, Value Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;CombinedGenericTable:&lt;BR /&gt;Load distinct id &amp;amp; Name &amp;amp;creatDat as Key, *&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Desktop\example.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;FOR i = NoOfTables()-1 to 0 STEP -1&lt;/P&gt;&lt;P&gt;LET vTable=TableName($(i));&lt;BR /&gt;IF WildMatch('$(vTable)', 'GenericDB.*') THEN&lt;/P&gt;&lt;P&gt;LEFT JOIN ([CombinedGenericTable]) LOAD distinct * RESIDENT [$(vTable)];&lt;/P&gt;&lt;P&gt;DROP TABLE [$(vTable)];&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;NEXT i;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Nov 2020 16:08:26 GMT</pubDate>
    <dc:creator>hiela001</dc:creator>
    <dc:date>2020-11-26T16:08:26Z</dc:date>
    <item>
      <title>read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762633#M591508</link>
      <description>&lt;P&gt;i stored many Fields from a shopDB in qvd Tabel, the Problem now is i have a Field that is in Json Format , the other Fields are normal Fields : for Expmple&lt;BR /&gt;&lt;BR /&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| Name&amp;nbsp; | creatDate | Propereties&lt;/P&gt;&lt;P&gt;12356| Laptop|01.01.2015|&amp;nbsp; {"&lt;SPAN&gt;height&lt;/SPAN&gt;":"30","Width":"233","&lt;SPAN&gt;length&lt;/SPAN&gt;":"24"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does somebody have any Idea how to get 3 Fields from the Field&amp;nbsp;Propereties(&amp;nbsp;&lt;SPAN&gt;height-Width and&amp;nbsp;length) ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762633#M591508</guid>
      <dc:creator>hiela001</dc:creator>
      <dc:date>2024-11-16T17:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762789#M591509</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/102013"&gt;@hiela001&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Temp:&lt;BR /&gt;Load *,ID1&amp;amp;'|'&amp;amp;Name&amp;amp;'|'&amp;amp;creatDate as Key, SubField(T,':', 1) as Column, SubField(T,':',2) as Value;&lt;BR /&gt;Load *, SubField(PurgeChar(Propereties,'{}"'), ',') as T Inline&lt;BR /&gt;[&lt;BR /&gt;ID1 | Name | creatDate | Propereties&lt;/P&gt;&lt;P&gt;12356| Laptop|01.01.2015| {"height":"30","Width":"233","length":"24"}&lt;BR /&gt;](delimiter is '|');&lt;/P&gt;&lt;P&gt;GenericDB:&lt;BR /&gt;Generic LOAD Key, Column, Value Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;CombinedGenericTable:&lt;BR /&gt;Load distinct ID1&amp;amp;'|'&amp;amp;Name&amp;amp;'|'&amp;amp;creatDate as Key, * Inline&lt;BR /&gt;[&lt;BR /&gt;ID1 | Name | creatDate | Propereties&lt;/P&gt;&lt;P&gt;12356| Laptop|01.01.2015| {"height":"30","Width":"233","length":"24"}&lt;BR /&gt;](delimiter is '|');&lt;/P&gt;&lt;P&gt;FOR i = NoOfTables()-1 to 0 STEP -1&lt;/P&gt;&lt;P&gt;LET vTable=TableName($(i));&lt;BR /&gt;IF WildMatch('$(vTable)', 'GenericDB.*') THEN&lt;/P&gt;&lt;P&gt;LEFT JOIN ([CombinedGenericTable]) LOAD distinct * RESIDENT [$(vTable)];&lt;/P&gt;&lt;P&gt;DROP TABLE [$(vTable)];&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;NEXT i;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MayilVahanan_0-1605772651861.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/44424i3F098F97750DB281/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MayilVahanan_0-1605772651861.png" alt="MayilVahanan_0-1605772651861.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 07:57:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762789#M591509</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-19T07:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762875#M591510</link>
      <description>&lt;P&gt;Hi Mayil&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your help it seems to be a very good Solution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;i'm a Qlik beginner , how should the Code be if i want to get the Data&amp;nbsp; from&amp;nbsp; QVD and not from Inline table like this Exapmle ? what i have to change ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 11:09:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1762875#M591510</guid>
      <dc:creator>hiela001</dc:creator>
      <dc:date>2020-11-19T11:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764690#M591511</link>
      <description>&lt;P&gt;any other Helps ??&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 12:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764690#M591511</guid>
      <dc:creator>hiela001</dc:creator>
      <dc:date>2020-11-26T12:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764700#M591512</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/102013"&gt;@hiela001&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead of inline table , u can use replace with ur qvd like below&lt;/P&gt;&lt;P&gt;Load *,ID1&amp;amp;'|'&amp;amp;Name&amp;amp;'|'&amp;amp;creatDate as Key, SubField(T,':', 1) as Column, SubField(T,':',2) as Value;&lt;/P&gt;&lt;P&gt;Load *, SubField(PurgeChar(Propereties,'{}"'), ',') as T&amp;nbsp;&lt;/P&gt;&lt;P&gt;From urqvd(qvd);&lt;/P&gt;&lt;P&gt;GenericDB:&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 12:54:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764700#M591512</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-26T12:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764772#M591513</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;MayilVahanan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i change the code to this one bellow, but it didn't work , there is a problem with the&amp;nbsp;GenericDB Table&amp;nbsp;&lt;/P&gt;&lt;P&gt;:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;________________&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;Load *,id &amp;amp; Name &amp;amp;creatDate&amp;nbsp;as Key, SubField(T,':', 1) as Column, SubField(T,':',2) as Value;&lt;/P&gt;&lt;P&gt;Load *, SubField(PurgeChar(Propereties,'{}"'), ',') as T&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;[C:\Desktop\Example.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GenericDB:&lt;BR /&gt;Generic LOAD Key, Column, Value Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;CombinedGenericTable:&lt;BR /&gt;Load distinct id &amp;amp; Name &amp;amp;creatDat as Key, *&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Desktop\example.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;FOR i = NoOfTables()-1 to 0 STEP -1&lt;/P&gt;&lt;P&gt;LET vTable=TableName($(i));&lt;BR /&gt;IF WildMatch('$(vTable)', 'GenericDB.*') THEN&lt;/P&gt;&lt;P&gt;LEFT JOIN ([CombinedGenericTable]) LOAD distinct * RESIDENT [$(vTable)];&lt;/P&gt;&lt;P&gt;DROP TABLE [$(vTable)];&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;NEXT i;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 16:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764772#M591513</guid>
      <dc:creator>hiela001</dc:creator>
      <dc:date>2020-11-26T16:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764813#M591514</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/102013"&gt;@hiela001&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to provide the example qvd ? to verify.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 01:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764813#M591514</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-27T01:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764927#M591516</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Mayil Vahanan&amp;nbsp;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this is my Example with QVD table and QVW code&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 11:41:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1764927#M591516</guid>
      <dc:creator>hiela001</dc:creator>
      <dc:date>2020-11-27T11:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: read json Field from QVD Table</title>
      <link>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1765030#M591517</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/102013"&gt;@hiela001&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File is working fine .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MayilVahanan_0-1606525710067.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/44950i7BBC86EE16190885/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MayilVahanan_0-1606525710067.png" alt="MayilVahanan_0-1606525710067.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you've space in tables, then use like this&lt;/P&gt;&lt;P&gt;IF WildMatch('[$(vTable)]', 'GenericDB.*') THEN&lt;/P&gt;</description>
      <pubDate>Sat, 28 Nov 2020 01:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/read-json-Field-from-QVD-Table/m-p/1765030#M591517</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-28T01:10:55Z</dc:date>
    </item>
  </channel>
</rss>

