<?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: add to data flow using tjavaflex in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370947#M133935</link>
    <description>Hi&amp;nbsp; 
&lt;FONT color="#5b5b5d"&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;dudum&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;, 
&lt;BR /&gt;What's your job requirement? Do you want variable value in parameters of tWebserviceInput from previous component(tjavaflex)? 
&lt;BR /&gt;Can you please explain your request with some example data so that we can give you more accurate&amp;nbsp;answers. 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
    <pubDate>Fri, 03 Jul 2015 09:17:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-07-03T09:17:43Z</dc:date>
    <item>
      <title>add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370946#M133934</link>
      <description>Hello, how can i add rows inside tjavaFlex or twebserviceinput java tab?</description>
      <pubDate>Thu, 02 Jul 2015 23:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370946#M133934</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-02T23:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370947#M133935</link>
      <description>Hi&amp;nbsp; 
&lt;FONT color="#5b5b5d"&gt;&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;dudum&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;, 
&lt;BR /&gt;What's your job requirement? Do you want variable value in parameters of tWebserviceInput from previous component(tjavaflex)? 
&lt;BR /&gt;Can you please explain your request with some example data so that we can give you more accurate&amp;nbsp;answers. 
&lt;BR /&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina</description>
      <pubDate>Fri, 03 Jul 2015 09:17:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370947#M133935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-03T09:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370948#M133936</link>
      <description>Well , I have tjavaflex component and i want to generate new output rows (flow),from the java code.&lt;BR /&gt;what i mean it is not based on input component, just generate them in the code and output as flow</description>
      <pubDate>Tue, 07 Jul 2015 09:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370948#M133936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T09:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370949#M133937</link>
      <description>hi,
&lt;BR /&gt;try something like :
&lt;BR /&gt;
&lt;PRE&gt;output_row.yourfield =&amp;nbsp; your calculed value (calling a routines or not);&lt;/PRE&gt;
&lt;BR /&gt;
&lt;BR /&gt;regards
&lt;BR /&gt;laurent</description>
      <pubDate>Tue, 07 Jul 2015 09:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370949#M133937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T09:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370950#M133938</link>
      <description>You can do this in a simple way by doing something like the following.....&lt;BR /&gt;Start Code&lt;BR /&gt;&lt;PRE&gt;for(int i = 0; i&amp;lt;10 ; i++){&lt;/PRE&gt;&lt;BR /&gt;You are opening a FOR loop here, but not closing it.&lt;BR /&gt;&lt;BR /&gt;Main Code&lt;BR /&gt;&lt;PRE&gt;row1.column1 = "Column1";&lt;BR /&gt;row1.column2 = "Column2";&lt;BR /&gt;row1.column3 = "Column3";&lt;/PRE&gt;&lt;BR /&gt;You are creating your data row here. I am assuming an output row named "row1" and a schema with the columns used above.&lt;BR /&gt;End Code&lt;BR /&gt;&lt;PRE&gt;}&lt;/PRE&gt;&lt;BR /&gt;You are closing the FOR loop here.&lt;BR /&gt;If you plug that in, you will generate 10 rows of data.</description>
      <pubDate>Tue, 07 Jul 2015 09:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370950#M133938</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T09:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370951#M133939</link>
      <description>right rhall, 
&lt;BR /&gt; 
&lt;PRE&gt;output_row.yourfield&lt;/PRE&gt; 
&lt;BR /&gt;is syntax for tJavaRow (never understood why 2 differents ways) 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 07 Jul 2015 13:45:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370951#M133939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T13:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370952#M133940</link>
      <description>I always get caught out kzone. It should just use the input and output row names as far as I am concerned.</description>
      <pubDate>Tue, 07 Jul 2015 14:15:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370952#M133940</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T14:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370953#M133941</link>
      <description>i like the way " input_ &amp;amp; output_ syntax"&amp;nbsp; ...&amp;nbsp; they are independant of the name's flow (and the fact that propagation not always efficient 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;regards 
&lt;BR /&gt;laurent</description>
      <pubDate>Tue, 07 Jul 2015 14:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370953#M133941</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-07T14:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370954#M133942</link>
      <description>so the number of loops i make in the start row , the flow output will be?</description>
      <pubDate>Wed, 08 Jul 2015 13:46:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370954#M133942</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-08T13:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: add to data flow using tjavaflex</title>
      <link>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370955#M133943</link>
      <description>If you set the loop to iterate 10 times, you will get 10 rows generated.</description>
      <pubDate>Wed, 08 Jul 2015 13:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/add-to-data-flow-using-tjavaflex/m-p/2370955#M133943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-08T13:50:35Z</dc:date>
    </item>
  </channel>
</rss>

