<?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: Using globalMaP after onsubjobok in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318622#M88952</link>
    <description>&lt;P&gt;I also faced same issue but now it solved for me. Thank you for the help.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2022 05:38:37 GMT</pubDate>
    <dc:creator>Daniel044</dc:creator>
    <dc:date>2022-08-22T05:38:37Z</dc:date>
    <item>
      <title>Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318621#M88951</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use the  &lt;/P&gt;&lt;P&gt;((String)globalMap.get("row1.column1")) in the second job&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tdbinput --row1---&amp;gt;trest----&amp;gt;tfiledelimited&lt;/P&gt;&lt;P&gt;|&lt;/P&gt;&lt;P&gt;|&lt;/P&gt;&lt;P&gt;tfileinputdelimited---textractjsonfield---tmap2---&amp;gt;idbout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i want to use the outputput from &lt;/P&gt;&lt;P&gt;tdbinput i,e ((String)globalMap.get("row1.column1")) in tmap2  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is that possible?Is there a way to call that.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:38:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318621#M88951</guid>
      <dc:creator>since_1995</dc:creator>
      <dc:date>2024-11-15T22:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318622#M88952</link>
      <description>&lt;P&gt;I also faced same issue but now it solved for me. Thank you for the help.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 05:38:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318622#M88952</guid>
      <dc:creator>Daniel044</dc:creator>
      <dc:date>2022-08-22T05:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318623#M88953</link>
      <description>&lt;P&gt;Can you please share the solution &lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 18:39:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318623#M88953</guid>
      <dc:creator>since_1995</dc:creator>
      <dc:date>2022-08-24T18:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318624#M88954</link>
      <description>&lt;P&gt;You need to explain what you are wanting to do? If your tDBInput produces 1 million rows, they will have all been processed by the end of the 1st SubJob. So the value of ((String)globalMap.get("row1.column1")) will likely be useless. The OnSubJobOK only fires at the end of the SubJob.  You can make use of globalMap values between SubJobs, but you need to understand that (in the way you have this designed) SubJob 1 will be complete before SubJob 2 starts. So either you need to save all the values for column1 OR you need to rearrange your job so that whatever is happening in SubJob 2 happens once for every row processed in SubJob 1.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 22:58:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318624#M88954</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-24T22:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318625#M88955</link>
      <description>&lt;P&gt;Yes there are 5 columns coming out of tdbinput, in which I will be using only one column in the first job so can I store rest of the column values globally and can call it at my subjob 2 and pass it to dboutput?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used tjavarow after tdbinput1 and stored the columns using context but it is passing only the last value of these columns  to all the records in my tmap2&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 03:12:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318625#M88955</guid>
      <dc:creator>since_1995</dc:creator>
      <dc:date>2022-08-25T03:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using globalMaP after onsubjobok</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318626#M88956</link>
      <description>&lt;P&gt;So I need to save all values for column1&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 03:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-globalMaP-after-onsubjobok/m-p/2318626#M88956</guid>
      <dc:creator>since_1995</dc:creator>
      <dc:date>2022-08-25T03:12:48Z</dc:date>
    </item>
  </channel>
</rss>

