<?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: Passing Source Column through twebserviceinput to Target Table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200333#M2853</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have attached the design and the values passed in each component. In twebservice component in the output schema add the source column you want to pass to the target. In tFixedflow pass the global variables. under the Value press ctrl space and slect the global variable with the column name you want to pass to the twebservice input.&lt;/P&gt;
&lt;P&gt;In tJavaRow please note the last column is pulled from row2 link. After tJavarow pass you pass the value to tgt.&lt;/P&gt;
&lt;P&gt;Hope this is what you were looking for.&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lxzu"&gt;tjavarowcomponent.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyU6"&gt;twebservicecomponent.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyQG"&gt;tfixedflowinput.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyTO"&gt;twebserviceflow.JPG&lt;/A&gt;</description>
    <pubDate>Sat, 25 Apr 2020 00:14:10 GMT</pubDate>
    <dc:creator>AAA999</dc:creator>
    <dc:date>2020-04-25T00:14:10Z</dc:date>
    <item>
      <title>Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200327#M2847</link>
      <description>&lt;P&gt;Gurus,&lt;/P&gt;
&lt;P&gt;How to pass the source column&amp;nbsp;using twebserviceinput to the target table.&lt;/P&gt;
&lt;P&gt;Flow&lt;/P&gt;
&lt;P&gt;table---&amp;gt;tflowiterate----&amp;gt;twebserviceinput---------&amp;gt;filedelimited&lt;/P&gt;
&lt;P&gt;Table has multiple columns. verifying currency by country using twebserviceinput. I tried joining the output from &lt;SPAN&gt;twebserviceinput with the source column in tmap but not working.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;can someone provide me a solution?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 20:05:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200327#M2847</guid>
      <dc:creator>AAA999</dc:creator>
      <dc:date>2019-01-17T20:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200328#M2848</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not very clean described your design&lt;/P&gt;&lt;P&gt;but normally it is:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;table -&amp;gt; tFlowToIterate - this part read row by row and store all row in globalMap, with names "rowxxx.columnname", where rowxxx - name under line between table and tFlowToIterate&lt;/LI&gt;&lt;LI&gt;tFlowToIterate -&amp;gt; tFixedFlowInput. in tFixedFlowInput you define schema - what you want to path forward. For example Curency, and in value put (String)globalMap.get("rowxxx.columnname") (String - just an example)&lt;/LI&gt;&lt;LI&gt;connect tFixedFlowInput -&amp;gt;tMap -&amp;gt; twebServiceInput, in tMap you prepare structure accepted by your webservice - XML or JSON or just a text in proper column&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 17 Jan 2019 22:03:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200328#M2848</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2019-01-17T22:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200329#M2849</link>
      <description>&lt;P&gt;Thanks, for the quick reply. Looks like you can not connect tmap to twebserviceinput but can connect to twebservice. is there a way you can join the source columns to the output column of the twebserviceinput component?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Source has 4 input column (f1,f2,f3,f4) .Only 2 required columns are passed to tflowiterate and the output column from tflowiterate is then passed to twebserviceinput.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;f1-----&amp;gt;tflowiterate&lt;/P&gt;&lt;P&gt;f2---&amp;gt; tflowiterate&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output column from tflowiterate passed to twebserviceinput. Output column from twebserviceinput needs to be joined back to column f3 and f4. before loading the target table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 22:29:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200329#M2849</guid>
      <dc:creator>AAA999</dc:creator>
      <dc:date>2019-01-17T22:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200330#M2850</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can not undestand this, could you publish pictures of your design and show - what and what you try to connect (and why? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; )&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 23:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200330#M2850</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2019-01-17T23:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200331#M2851</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="webserviceflow.JPG" style="width: 844px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M24d.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/145862iEA747C88BE10C9F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M24d.jpg" alt="0683p000009M24d.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="webserviceflow1.JPG" style="width: 680px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M1oL.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/136425iD45AED93ABAD3997/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M1oL.jpg" alt="0683p000009M1oL.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="webserviceflow2.JPG" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M25G.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147892i913DA89FBD6FF5FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M25G.jpg" alt="0683p000009M25G.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How to pull the additional three cols region, id ,desc from source&amp;nbsp;to the tgt?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 15:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200331#M2851</guid>
      <dc:creator>AAA999</dc:creator>
      <dc:date>2019-01-18T15:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200332#M2852</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have similar requirement. Did you get answer for your question&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 16:34:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200332#M2852</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-24T16:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200333#M2853</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have attached the design and the values passed in each component. In twebservice component in the output schema add the source column you want to pass to the target. In tFixedflow pass the global variables. under the Value press ctrl space and slect the global variable with the column name you want to pass to the twebservice input.&lt;/P&gt;
&lt;P&gt;In tJavaRow please note the last column is pulled from row2 link. After tJavarow pass you pass the value to tgt.&lt;/P&gt;
&lt;P&gt;Hope this is what you were looking for.&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lxzu"&gt;tjavarowcomponent.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyU6"&gt;twebservicecomponent.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyQG"&gt;tfixedflowinput.JPG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyTO"&gt;twebserviceflow.JPG&lt;/A&gt;</description>
      <pubDate>Sat, 25 Apr 2020 00:14:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200333#M2853</guid>
      <dc:creator>AAA999</dc:creator>
      <dc:date>2020-04-25T00:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passing Source Column through twebserviceinput to Target Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200334#M2854</link>
      <description>Thanks for reply and solution. will try to implement in this way.</description>
      <pubDate>Sun, 26 Apr 2020 15:31:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Passing-Source-Column-through-twebserviceinput-to-Target-Table/m-p/2200334#M2854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-26T15:31:52Z</dc:date>
    </item>
  </channel>
</rss>

