<?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: I need help to convert json record into field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290617#M63882</link>
    <description>&lt;P&gt;Hello Boppudi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yep this is exactly the output I am looking for. I can take this output and write it to the DB. How can I replicate what you have done?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Joseph&lt;/P&gt;</description>
    <pubDate>Tue, 24 Apr 2018 17:11:32 GMT</pubDate>
    <dc:creator>joefrancois</dc:creator>
    <dc:date>2018-04-24T17:11:32Z</dc:date>
    <item>
      <title>I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290608#M63873</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am trying to extract multiple row from a JSON tRESTClient input with some static data inject in the row creation. My JSON input look like so:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;[&lt;BR /&gt;{&lt;BR /&gt;"OrderID": 6675,&lt;BR /&gt;"FirstName": "John",&lt;BR /&gt;"LastName": "Doe",&lt;/P&gt; 
&lt;P&gt;"Address": "123 spring st",&lt;/P&gt; 
&lt;P&gt;"OrderItemList": [&lt;BR /&gt;{&lt;BR /&gt;"ItemID": "736940759",&lt;BR /&gt;"ItemQty": 1,&lt;BR /&gt;"ItemDesc": "Widget One",&lt;BR /&gt;"ItemUnitPrice": 68.99,&lt;/P&gt; 
&lt;P&gt;},&lt;BR /&gt;{&lt;BR /&gt;"ItemID": "736940858",&lt;BR /&gt;"ItemQty": 1,&lt;BR /&gt;"ItemDesc": "Widget Two",&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;"ItemUnitPrice": 37.99,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;}&lt;BR /&gt;],&lt;BR /&gt;"PromotionList": [&lt;BR /&gt;{&lt;BR /&gt;"PromotionName": "Code",&lt;BR /&gt;"Coupon": "Code",&lt;BR /&gt;"DiscountAmount": 9.6&lt;BR /&gt;}&lt;BR /&gt;]&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I am trying to get the following out put&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;TABLE&gt; 
 &lt;TBODY&gt; 
  &lt;TR&gt; 
   &lt;TD&gt;OrderID&lt;/TD&gt; 
   &lt;TD&gt;FirstName&lt;/TD&gt; 
   &lt;TD&gt;LastName&lt;/TD&gt; 
   &lt;TD&gt;Address&lt;/TD&gt; 
   &lt;TD&gt;Coupon&lt;/TD&gt; 
   &lt;TD&gt;ItemID&lt;/TD&gt; 
   &lt;TD&gt;ItemQty&lt;/TD&gt; 
   &lt;TD&gt;ItemDesc&lt;/TD&gt; 
   &lt;TD&gt;ItemUnitPrice&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR&gt; 
   &lt;TD&gt;6675&lt;/TD&gt; 
   &lt;TD&gt;John&lt;/TD&gt; 
   &lt;TD&gt;Doe&lt;/TD&gt; 
   &lt;TD&gt;123 spring st&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;Code&lt;/TD&gt; 
   &lt;TD&gt;736940759&lt;/TD&gt; 
   &lt;TD&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Fine Product&lt;/TD&gt; 
   &lt;TD&gt;68.99&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;6675&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&lt;SPAN&gt;John&lt;/SPAN&gt;&amp;nbsp;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;Doe&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;123 spring st&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;Code&lt;/TD&gt; 
   &lt;TD&gt;736940858&lt;/TD&gt; 
   &lt;TD&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Good Product&lt;/TD&gt; 
   &lt;TD&gt;37.99&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;6675&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;John&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;Doe&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;&lt;SPAN&gt;123 spring st&lt;/SPAN&gt;&lt;/TD&gt; 
   &lt;TD&gt;Code&lt;/TD&gt; 
   &lt;TD&gt;77777&lt;/TD&gt; 
   &lt;TD&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Discount&lt;/TD&gt; 
   &lt;TD&gt;&amp;nbsp;-9.6&lt;/TD&gt; 
  &lt;/TR&gt; 
 &lt;/TBODY&gt; 
&lt;/TABLE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have been pulling my hair out, any help would be greatly appreciated.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt; 
&lt;P&gt;Joseph&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 08:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290608#M63873</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2024-11-16T08:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290609#M63874</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The provided file is not valid json format.&lt;/P&gt;&lt;P&gt;If possible please provide valid source jSon file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Sun, 22 Apr 2018 23:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290609#M63874</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2018-04-22T23:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290610#M63875</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find attached the json file. I only modified the data to remove customer data, I replaced it with generic Jane Doe data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;joseph&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LsVL"&gt;example-1.txt&lt;/A&gt;</description>
      <pubDate>Mon, 23 Apr 2018 16:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290610#M63875</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-04-23T16:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290611#M63876</link>
      <description>&lt;P&gt;Use tExtractJSONFields to accomplish this.&amp;nbsp; See screenshots below. I typically use a combination of 1 or more components in the event of nested JSON&amp;nbsp; (Coupon/Item details in your example)&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2018-04-23_13-51-48.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwwD.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135450iAF57C8E7FBFA7BA4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwwD.png" alt="0683p000009LwwD.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2018-04-23_13-52-01.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwwI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157171i1BC5577F44A4F0FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwwI.png" alt="0683p000009LwwI.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 18:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290611#M63876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-23T18:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290612#M63877</link>
      <description>&lt;P&gt;Thanks evansdar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to accomplish is to have a separate line for the discount. I am able to have a line per item ordered, please see the attachment.If a customer order 2 items with a&amp;nbsp; discount code, the script should generate 3 lines (one for each items plus the discount line.).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just not fluent enough with JSON to make it happen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joseph&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lsig"&gt;Screenshot2018-04-2320.09.50a.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LsfJ"&gt;Screenshot2018-04-2320.07.06.png&lt;/A&gt;</description>
      <pubDate>Mon, 23 Apr 2018 19:54:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290612#M63877</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-04-23T19:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290613#M63878</link>
      <description>&lt;P&gt;Thanks evansdar,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to accomplish is to have a separate line for the discount. I am able to have a line per item ordered, please see the attachment.If a customer order 2 items with a&amp;nbsp; discount code, the script should generate 3 lines (one for each items plus the discount line.).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just not fluent enough with JSON to make it happen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joseph&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lsi3"&gt;Screenshot2018-04-2320.09.50a.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LshZ"&gt;Screenshot2018-04-2320.07.06.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lsj0"&gt;Screenshot2018-04-2320.09.50a.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lsht"&gt;Screenshot2018-04-2320.07.06.png&lt;/A&gt;</description>
      <pubDate>Mon, 23 Apr 2018 19:54:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290613#M63878</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-04-23T19:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290614#M63879</link>
      <description>&lt;P&gt;Hi Joseph,&lt;/P&gt; 
&lt;P&gt;Please try below&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lwun.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134039i177DA07C28AD46B0/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lwun.png" alt="0683p000009Lwun.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder1.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwWg.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142080iB268FECF828D8571/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwWg.png" alt="0683p000009LwWg.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 21:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290614#M63879</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2018-04-23T21:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290615#M63880</link>
      <description>&lt;P&gt;Hello boppudi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get this far, but I need to be able to extract the discount to another line with some static field. As shown on the original post. Think of the discount as a 3 product with a negative amount.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Joseph&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 22:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290615#M63880</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-04-23T22:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290616#M63881</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;are you looking for&amp;nbsp; the following output?&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder2.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lwyn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153532iD196CABB2D9710BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lwyn.png" alt="0683p000009Lwyn.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 16:35:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290616#M63881</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2018-04-24T16:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290617#M63882</link>
      <description>&lt;P&gt;Hello Boppudi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yep this is exactly the output I am looking for. I can take this output and write it to the DB. How can I replicate what you have done?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Joseph&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 17:11:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290617#M63882</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-04-24T17:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290618#M63883</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;Please read json file as input like below&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder1.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwZX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135710iD90E8F656B3AAAF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwZX.png" alt="0683p000009LwZX.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Then use tMap to split records into two pipelines like below&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder3.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwwY.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142930i7D3ED79329147411/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwwY.png" alt="0683p000009LwwY.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Then use tAggregate to get unique order for each coupon.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder4.PNG" style="width: 911px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwzM.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155829iE56D0FE370511E20/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwzM.png" alt="0683p000009LwzM.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Then load aggregate and tMap output to&amp;nbsp;tBufferout.&lt;/P&gt; 
&lt;P&gt;Use tBufferinput to read two sets of data&amp;nbsp;and load into table/File.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jSonOrder2.PNG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lwvk.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144471i2A834363893F07B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lwvk.png" alt="0683p000009Lwvk.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Regards,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 17:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290618#M63883</guid>
      <dc:creator>vboppudi</dc:creator>
      <dc:date>2018-04-24T17:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: I need help to convert json record into field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290619#M63884</link>
      <description>&lt;P&gt;Thank you so much for the solution. I am new to Talend and would have never been able to figure this out on my own. I still however have one problem. I can't seem to figure out how to transform the DiscountAmount into a negative number. I keep on getting a compiling error&amp;nbsp;"Detail Message: Type mismatch: cannot convert from Double to String". Any tip on how to resolve it?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you again and regards,&lt;/P&gt; 
&lt;P&gt;Joseph&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 21:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/I-need-help-to-convert-json-record-into-field/m-p/2290619#M63884</guid>
      <dc:creator>joefrancois</dc:creator>
      <dc:date>2018-05-03T21:03:36Z</dc:date>
    </item>
  </channel>
</rss>

