<?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: JSON how to load the second hierarchical level (local) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637667#M596054</link>
    <description>&lt;P&gt;As far as i know there are jscript macros for non-nested json arrays. But for nested Json Files i havent found one. There might be also script solutions but they are always static and if there is a little difference between old an new json file you will probably have to to rewrite/adapt your script. So the Python solution is probably &lt;STRONG&gt;the&lt;/STRONG&gt; solution because its handy, dynamic and very fast to setup.&lt;/P&gt;&lt;P&gt;Btw: Maybe place your jsonfiles to a weblocation (Dropbox, etc..) and use the qlik rest connector to extract the json file. thats the only possibility to extract the data without external tools.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Oct 2019 08:58:03 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2019-10-21T08:58:03Z</dc:date>
    <item>
      <title>JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637068#M596048</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I'm trying to load a local JSON file in qlikview. I&amp;nbsp;have already managed to load specific 'tables'&amp;nbsp; from a JSON file by using the following code:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Test1:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;LOAD * FROM [.\test7.json] (json, Table is [./TEST1], codepage is 1252, embedded labels);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Test2:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;LOAD * FROM [.\test7.json] (json, Table is [./TEST2], codepage is 1252, embedded labels);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But I also want to load data from 'details'&amp;nbsp; table, which is a level lower then ' TEST1'&amp;nbsp; (see attached zip file with json and qvw).&amp;nbsp;I would expect that&amp;nbsp; I would be able to get this data by using something like: &lt;EM&gt;Table is [./TEST1/details]&lt;/EM&gt;, but that doesn't seem to work.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JSON second hierarchical level.png" style="width: 236px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/21866i3B3ACD4D9414088D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JSON second hierarchical level.png" alt="JSON second hierarchical level.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I really need your expertise.&amp;nbsp;Who can help me solve this problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Greetings,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Eelco&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637068#M596048</guid>
      <dc:creator>cdss-developer</dc:creator>
      <dc:date>2024-11-16T19:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637125#M596050</link>
      <description>&lt;P&gt;have a look at the attached zip file. it contains a python script for flattening your json file and transform it to csv. the transformed csv can be loaded just as normal into QV. In order to generate the csv file within the script, i inserted an execute statement&amp;nbsp; at the beginning, which triggers the python script!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unbenannt.png" style="width: 342px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/21877iFE3AC64E067A414F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Unbenannt.png" alt="Unbenannt.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So in order to get it working you will need to install Python and after that, through cmd-shell, Pandas and Cherrypicker (You will find installation instructions on youtube)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2019 11:30:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637125#M596050</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-10-18T11:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637608#M596052</link>
      <description>&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;Thank you very much for your quick response, for taking the time to look at my script, work it out and describe it so clearly. This outcome is exactly what I need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I understand correctly, that the data cannot be extracted using/ modifying a QV script?&lt;/P&gt;&lt;P&gt;Unfortunately it is not (easy) possible to install new programs/ tools (like Python) on my workstation.&lt;/P&gt;&lt;P&gt;Alternatively, a VB script in Qlikview&amp;nbsp;often works well in these kinds of cases. Do you know if it is possible to convert this Python script to a VB script, which I can run in Qlikview?&lt;/P&gt;&lt;P&gt;Greetings,&amp;nbsp;&lt;BR /&gt;Eelco&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 06:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637608#M596052</guid>
      <dc:creator>cdss-developer</dc:creator>
      <dc:date>2019-10-21T06:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637667#M596054</link>
      <description>&lt;P&gt;As far as i know there are jscript macros for non-nested json arrays. But for nested Json Files i havent found one. There might be also script solutions but they are always static and if there is a little difference between old an new json file you will probably have to to rewrite/adapt your script. So the Python solution is probably &lt;STRONG&gt;the&lt;/STRONG&gt; solution because its handy, dynamic and very fast to setup.&lt;/P&gt;&lt;P&gt;Btw: Maybe place your jsonfiles to a weblocation (Dropbox, etc..) and use the qlik rest connector to extract the json file. thats the only possibility to extract the data without external tools.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 08:58:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637667#M596054</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-10-21T08:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637877#M596055</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Yes, I am (preferably) looking for a dynamic solution. It should indeed work via a web connection, but in this case it must be a secure web storage. That's why I'm currently working on whether I can connect to my OneDrive company account (which&amp;nbsp;sadly seems to be blocked for QlikView access at the moment). If this doesn't work, I'm gonna try the Python solution.&lt;BR /&gt;In the meantime, if there is someone else with a other solution, please let me know.&lt;BR /&gt;Greetings,&lt;BR /&gt;Eelco&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 14:15:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1637877#M596055</guid>
      <dc:creator>cdss-developer</dc:creator>
      <dc:date>2019-10-21T14:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1639201#M596056</link>
      <description>&lt;P&gt;Eelco, Frank likely has the best solution, but I did find the following link, going to let you have a look as I honestly do not know if this will get you anywhere or not, I believe you would have to basically code your own connector in this case...&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview-developer/April2019/Subsystems/QVXSDKAPI/Content/QV_QVXSDKAPI/Handling-other-generic-commands.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview-developer/April2019/Subsystems/QVXSDKAPI/Content/QV_QVXSDKAPI/Handling-other-generic-commands.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Only other thing I could find for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 20:00:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1639201#M596056</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-23T20:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1721776#M596057</link>
      <description>&lt;P&gt;hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;after executing this code am getting this error, could you please help me to fix&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXECUTE statement requires Script (Allow Database Write and Execute Statements) in User Preferences settings&lt;BR /&gt;Execute cmd /C "cd C:\Users\admin\Desktop\json_example\ &amp;amp;&amp;amp; flatten_jsonfile_with_pandas_and_cherrypicker.py"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;deep&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2020 14:26:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1721776#M596057</guid>
      <dc:creator>deep</dc:creator>
      <dc:date>2020-06-24T14:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1722018#M596058</link>
      <description>&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;I am getting this error could you help me, please.&lt;/P&gt;&lt;P&gt;error:&lt;/P&gt;&lt;P&gt;File "flatten_jsonfile_with_pandas_and_cherrypicker.py", line 2, in &amp;lt;module&amp;gt;&lt;BR /&gt;from cherrypicker import CherryPicker&lt;BR /&gt;ModuleNotFoundError: No module named 'cherrypicker'&lt;/P&gt;&lt;P&gt;and when am installing (&lt;STRONG&gt;pip install cherrypicker&lt;/STRONG&gt;) it is giving me this&lt;/P&gt;&lt;P&gt;error:&lt;/P&gt;&lt;P&gt;FileNotFoundError: [Errno 2] No such file or directory: 'requirements-dev.txt'&lt;BR /&gt;ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.&lt;/P&gt;&lt;P&gt;please help me to fix this one...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 07:50:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1722018#M596058</guid>
      <dc:creator>deep</dc:creator>
      <dc:date>2020-06-25T07:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: JSON how to load the second hierarchical level (local)</title>
      <link>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1722624#M596059</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/29675"&gt;@Frank_Hartmann&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting this error could you help me, please.&lt;/P&gt;&lt;P&gt;error:&lt;/P&gt;&lt;P&gt;File "flatten_jsonfile_with_pandas_and_cherrypicker.py", line 2, in &amp;lt;module&amp;gt;&lt;BR /&gt;from cherrypicker import CherryPicker&lt;BR /&gt;ModuleNotFoundError: No module named 'cherrypicker'&lt;/P&gt;&lt;P&gt;and when am installing (&lt;STRONG&gt;pip install cherrypicker&lt;/STRONG&gt;) it is giving me this&lt;/P&gt;&lt;P&gt;error:&lt;/P&gt;&lt;P&gt;FileNotFoundError: [Errno 2] No such file or directory: 'requirements-dev.txt'&lt;BR /&gt;ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.&lt;/P&gt;&lt;P&gt;please help me to fix this one...&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help me...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FYI: my JSON files is like this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"title": "",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"description": "",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 10,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"question_count": 1,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "1234",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"href": "&lt;A href="https://something.something/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://something.something&lt;/A&gt;",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"questions": [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "123",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 1,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"family": "single",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"subtype": "ver",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"sorting": null,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"required": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"type": "all",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"amount": "50"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"validation": null,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"forced_ranking": false,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"headings": [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"heading": "In process"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"href": "https://something",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"answers": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"choices": [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 1,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "50%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "316"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 4,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "51% - 60%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "107"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 3,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "61% - 70%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "108"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 4,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "71% - 80%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "109"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 5,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "81% - 90%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "110"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"position": 6,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"visible": true,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"text": "91% - 100%",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"quiz_options": {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"score": 0&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;"id": "111"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;},&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;deep&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 14:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/JSON-how-to-load-the-second-hierarchical-level-local/m-p/1722624#M596059</guid>
      <dc:creator>deep</dc:creator>
      <dc:date>2020-06-26T14:14:34Z</dc:date>
    </item>
  </channel>
</rss>

