<?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: tmap, lookup, insert new rows in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235043#M24188</link>
    <description>What you've done is similar to using a SQL statement like: 
&lt;BR /&gt;SELECT row1.*, row2.ID FROM row1 LEFT JOIN row2 ON row1.Issuer=row2.id AND row1.Name=row2.Name AND row1.Description=row2.Description WHERE row2.id!=row1.Issuer 
&lt;BR /&gt;Since you've joined the two input tables on row1.Issuer=row2.id how can you ever have them != for your output condition?! 
&lt;BR /&gt;What actually happens in Talend is that the join and the output condition are evaluated separately rather than together as in the SQL statement above. If the join fails (in your example because there is no match for all three fields) then row2.id (being a non-nullable int) is treated as 0 and thus the output condition is satisfied. You need to contruct your condition appropriately. 
&lt;BR /&gt;You're also clearly not using the lookup each row model correctly as you haven't defined any globalMap keys. Read Scenario 6 of the tMap help again. 
&lt;BR /&gt;Pictures must also be no more than 1024x768 pixels and yours in 1293x485.</description>
    <pubDate>Thu, 13 Sep 2012 04:31:57 GMT</pubDate>
    <dc:creator>alevy</dc:creator>
    <dc:date>2012-09-13T04:31:57Z</dc:date>
    <item>
      <title>tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235034#M24179</link>
      <description>Hello again! 
&lt;BR /&gt;i´ve got the following two tables like: 
&lt;BR /&gt;table1) 
&lt;BR /&gt;Coinfind: 
&lt;BR /&gt;id Issuer Name 
&lt;BR /&gt;360 3 Aedui 
&lt;BR /&gt;366 34 Augustus 
&lt;BR /&gt;128 4 Aedui 
&lt;BR /&gt;... ... ... 
&lt;BR /&gt; 
&lt;BR /&gt;table2) 
&lt;BR /&gt;Issuer: 
&lt;BR /&gt;id Name 
&lt;BR /&gt;1 Augustus 
&lt;BR /&gt;2 Tiberius 
&lt;BR /&gt;4 Julius 
&lt;BR /&gt;5 Aedui 
&lt;BR /&gt;.. ... 
&lt;BR /&gt;33 Augustus 
&lt;BR /&gt; 
&lt;BR /&gt;table1 mysqlinput --------&amp;gt; tmap --------------&amp;gt; tlogrow (should be: result table, mysqloutput) 
&lt;BR /&gt; ^ 
&lt;BR /&gt; | 
&lt;BR /&gt; | 
&lt;BR /&gt; table2 (lookup) mysqlinput 
&lt;BR /&gt; 
&lt;BR /&gt;so.. the issue ist, that i´ve got some same strings in both tables and also some names in table1, which are not included in table2. 
&lt;BR /&gt;so, first of all i want to do a lookup from table2 to table1 if you can find ids an names of table1 in table2. this i would like to do with string equal. 
&lt;BR /&gt;Issuer and id means the same (FYI). 
&lt;BR /&gt; 
&lt;BR /&gt;1) if table1.Name.equals(table2.Name) &amp;amp;&amp;amp; table1.Issuer == table2.id &amp;gt;&amp;gt; do nothing 
&lt;BR /&gt;2) if table1.Name.equals(table2.Name) &amp;amp;&amp;amp; table1.Issuer != table2.id &amp;gt;&amp;gt; id of table 1 should get that id of table2 
&lt;BR /&gt;3) if you can´t find table1.Name in table2.Name, insert Name of table1 to table2 and set a new id for it. 
&lt;BR /&gt;i had duplicate names in table2 and i solved it with tuniqrow. ok. done. 
&lt;BR /&gt;but now i´m trying to use tmap with little successes, but actually i don´t really know how to use it the right way. 
&lt;BR /&gt;on the left hand, i´ve got my two tables, table1 and table2 and on the right, i´ve got my result table with the same attributes like in table1. 
&lt;BR /&gt;i dragged and dropped the columns of table1 to the result table: id ----&amp;gt; id, Issuer -----&amp;gt; Issuer, etc. 
&lt;BR /&gt;i dragged and dropped the columns of table2 to the result table: id ----&amp;gt; Issuer, Name -----&amp;gt; Name 
&lt;BR /&gt;in the tmapsettings on the right: catch lookup inner join is true, catch output is false. 
&lt;BR /&gt;in the expression field on the right side below the schema type i want to put in the points 1), 2), 3) like above, but i don´t know how to express to set new ids and do nothing. 
&lt;BR /&gt;another point is: should i drag and drop the Issuer and all other columns from table1 to table2? 
&lt;BR /&gt;pls help.. tmap does something, but i need the expressions. 
&lt;BR /&gt;thanks for helping me! 
&lt;BR /&gt;Nadine</description>
      <pubDate>Tue, 11 Sep 2012 16:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235034#M24179</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-11T16:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235035#M24180</link>
      <description>hi Nadine,&lt;BR /&gt;first, please take a look at some of the great tutorials. Here's one that covers joining in a tMap&lt;BR /&gt;&lt;A href="http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=2" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/tutorials/tutorial.php?language=english&amp;amp;idTuto=2&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you are still running into problems after looking through the tutorials, please come back and ask.</description>
      <pubDate>Tue, 11 Sep 2012 20:41:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235035#M24180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-11T20:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235036#M24181</link>
      <description>thank you. i read all those tutorials a few times.  &lt;BR /&gt;now, i´m back and i´m asking my questions above twice. maybe is there someone else who can answer my questions??</description>
      <pubDate>Tue, 11 Sep 2012 20:53:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235036#M24181</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-11T20:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235037#M24182</link>
      <description>Have you joined the two tables on the left on name? With "Catch lookup inner join reject" that will give you case 3. But you then need the output from tMap to go to the database to add the new record to table 2. Make sure "Commit every" is set to 1 for the next part. 
&lt;BR /&gt;To make that new record visible to later rows from table 1, you'll have to use the "Reload at each row (cache)" lookup model. The tMap help has a good example on this. 
&lt;BR /&gt;A separate output from tMap without "Catch lookup inner join reject" but with an expression filter of table1.Issuer != table2.id will give you case 2. 
&lt;BR /&gt;You don't need to do anything for case 1. 
&lt;BR /&gt;Try it out; it's not that difficult. If you have more problems then screenprint your tMap and be specific about what's going wrong.</description>
      <pubDate>Wed, 12 Sep 2012 04:03:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235037#M24182</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2012-09-12T04:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235038#M24183</link>
      <description>"A separate output from tMap without "Catch lookup inner join reject" but with an expression filter of table1.Issuer != table2.id will give you case 2."
&lt;BR /&gt;tlogrow now shows me the names with different id´s.. in the screenshot i. e. Augustus with id 36 and id 38 has in the lookup table id 33 and i want to give Augustus now the id 33. how to do this? 
&lt;BR /&gt;in tjava you can do this with output_row = input_row.. but how to express in tmap? 
&lt;BR /&gt;now i will go on with the other steps.. step by step.. but really happy to have such guys like you here! 
&lt;BR /&gt;ps: it won´t upload the 2nd image.. i´m sry. the first table on the left is completely mapped to the output table and the expression is row1.Issuer != row2.id and on the left side commit every. 
&lt;BR /&gt;THANK YOU, alevy!!! 
&lt;BR /&gt;Nadine</description>
      <pubDate>Wed, 12 Sep 2012 10:29:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235038#M24183</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-12T10:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235039#M24184</link>
      <description>In the tMap output tables on the right, the column name on the right becomes the left side of the assignment expression and the expression you enter against it on the left becomes the right side, essentially use the value of this expression for this column. Just drop the id from the lookup into the output. 
&lt;BR /&gt;Are you sure you've worked through the tutorials because these are really basic questions?</description>
      <pubDate>Wed, 12 Sep 2012 13:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235039#M24184</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2012-09-12T13:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235040#M24185</link>
      <description>sry, but i didn´t understand the first sentence. &lt;BR /&gt;yes i did. and i spent the whole day to repeat the tutorials, but actually it still doesn´t work. i will burn another midnight oil. &lt;BR /&gt;thank you anyway.</description>
      <pubDate>Wed, 12 Sep 2012 19:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235040#M24185</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-12T19:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235041#M24186</link>
      <description>In a screenshot like the attached, the circled row is the equivalent of putting TestResultMemberIdentifiers.TargetEntityID = Membership.ID; in a tJavaRow. 
&lt;BR /&gt;What exactly doesn't work? Screenshot your tMap and your results and explain what went wrong. 
&lt;BR /&gt;Note the size restriction on images. If you can't squeeze into those, use a third-party site and give a link.</description>
      <pubDate>Thu, 13 Sep 2012 01:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235041#M24186</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2012-09-13T01:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235042#M24187</link>
      <description>it just gives me id´s with "0"... all id´s are "0".. although i just did what you say.
&lt;BR /&gt;cannot share the picture id´s, they are just about 135KB, have a look at 
&lt;A href="http://tinypic.com/view.php?pic=2dvpjsx&amp;amp;s=6" rel="nofollow noopener noreferrer"&gt;http://tinypic.com/view.php?pic=2dvpjsx&amp;amp;s=6&lt;/A&gt;
&lt;BR /&gt; i tried it with an expressions like:
&lt;BR /&gt;lookup.Issuer==row1.Issuer in row2 or an expression like 
&lt;BR /&gt;row1.Issuer == row2.id
&lt;BR /&gt;it all gives me in every row Issuer "0": 
&lt;BR /&gt;id Issuer Name CoinImage Description
&lt;BR /&gt;322 0 Augustus ... ...</description>
      <pubDate>Thu, 13 Sep 2012 03:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235042#M24187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-13T03:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235043#M24188</link>
      <description>What you've done is similar to using a SQL statement like: 
&lt;BR /&gt;SELECT row1.*, row2.ID FROM row1 LEFT JOIN row2 ON row1.Issuer=row2.id AND row1.Name=row2.Name AND row1.Description=row2.Description WHERE row2.id!=row1.Issuer 
&lt;BR /&gt;Since you've joined the two input tables on row1.Issuer=row2.id how can you ever have them != for your output condition?! 
&lt;BR /&gt;What actually happens in Talend is that the join and the output condition are evaluated separately rather than together as in the SQL statement above. If the join fails (in your example because there is no match for all three fields) then row2.id (being a non-nullable int) is treated as 0 and thus the output condition is satisfied. You need to contruct your condition appropriately. 
&lt;BR /&gt;You're also clearly not using the lookup each row model correctly as you haven't defined any globalMap keys. Read Scenario 6 of the tMap help again. 
&lt;BR /&gt;Pictures must also be no more than 1024x768 pixels and yours in 1293x485.</description>
      <pubDate>Thu, 13 Sep 2012 04:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235043#M24188</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2012-09-13T04:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235044#M24189</link>
      <description>thank you for your help. 
&lt;BR /&gt;now, first i will go on with the tutorials or "i have to", because i just read them.. 
&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; you´re right. maybe then i will come back! 
&lt;BR /&gt;have a nice day! 
&lt;BR /&gt;nadine</description>
      <pubDate>Thu, 13 Sep 2012 16:01:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235044#M24189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-13T16:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235045#M24190</link>
      <description>it´s partly working now. 
&lt;BR /&gt;but i still have some trouble, pls have a look at the screenshots. 
&lt;BR /&gt;i want to set new id´s to picture one. i. g. 7 to 6 and so on (the last picture is the lookup table, Name Aedui with id6, for comparison only. "Issuer" of the 1st picture corresponds to "id" of the last picture) 
&lt;BR /&gt;the second picture is the corresponding tmap. you can see the output in picture 3. 
&lt;BR /&gt;if i do the lookup on name2.. the upcoming picture 5 shows me that the join failed - again (the corresponding tmap in picture 4) 
&lt;BR /&gt;you can find all the names (name1 AND name2) included in the lookup table.. the join couldn´t fail in fact. 
&lt;BR /&gt;i´m at a loss now. i cannot understand why it´s working on name1 and why it won´t work on name2?</description>
      <pubDate>Wed, 19 Sep 2012 17:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235045#M24190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-19T17:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235046#M24191</link>
      <description>Looking at picture 5, I think you'll find the problem is trailing spaces in your source but not in your lookup.  Unless you have good reason, I always recommend changing the advanced setting of each input component to "Trim all columns" to avoid this.</description>
      <pubDate>Thu, 20 Sep 2012 11:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235046#M24191</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2012-09-20T11:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235047#M24192</link>
      <description>it´s all working now! made my day.</description>
      <pubDate>Wed, 26 Sep 2012 06:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235047#M24192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-26T06:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235048#M24193</link>
      <description>hi everybody, 
&lt;BR /&gt;i want to filter only those record which was stored yesteday can someone please tell me How can i fetch that records using Created date field? 
&lt;BR /&gt;thank you, 
&lt;BR /&gt;Regards , 
&lt;BR /&gt;Sam 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCXJ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135653i69E5A45148316225/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCXJ.png" alt="0683p000009MCXJ.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 19 Aug 2014 09:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235048#M24193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T09:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235049#M24194</link>
      <description>can you provide more details like. what is source, where do you want to use filter so on.&amp;nbsp;
&lt;BR /&gt;but if it is database or file then there is opportunity to filter data base on date.&amp;nbsp;
&lt;BR /&gt;you can use TalendDate.getDate()-1 &amp;nbsp;function which will return you yesterdays date. then use this date for filter.&amp;nbsp;</description>
      <pubDate>Tue, 19 Aug 2014 09:40:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235049#M24194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T09:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235050#M24195</link>
      <description>hi Everybody, 
&lt;BR /&gt;i have fetched two modules from salesforce and have to join and extract data which uploaded last day 
&lt;BR /&gt;can u please tell me which condition may i used for it? 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCaq.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135134i24CE965495D23E55/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCaq.png" alt="0683p000009MCaq.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 19 Aug 2014 09:58:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235050#M24195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T09:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235051#M24196</link>
      <description>you can use below code in tmap at right side Expression filter field.&amp;nbsp;
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getCurrentDate().after(TalendDate.addDate(TalendDate.getCurrentDate(), -1, "DD"))&lt;/PRE&gt;
&lt;BR /&gt;in above case use row2.CreatedDate for filter.&amp;nbsp;
&lt;BR /&gt;
&lt;PRE&gt;TalendDate.getCurrentDate().after(row2.CreatedDate.addDate(TalendDate.getCurrentDate(), -1, "DD"))&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Aug 2014 10:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235051#M24196</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T10:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235052#M24197</link>
      <description>hi Umesh sir,
&lt;BR /&gt;As you sugest i have used the Expression&amp;nbsp;
&lt;BR /&gt;TalendDate.getCurrentDate().after(TalendDate.addDate(TalendDate.getCurrentDate(), -1, "DD"))
&lt;BR /&gt;in Filtered_Data table but it gives the error Quote cannot be resolved to a variable
&lt;BR /&gt;tell me the problem
&lt;BR /&gt;tahnk you.</description>
      <pubDate>Tue, 19 Aug 2014 10:20:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235052#M24197</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T10:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: tmap, lookup, insert new rows</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235053#M24198</link>
      <description>can you show me tMap screen shot and the error code</description>
      <pubDate>Tue, 19 Aug 2014 10:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tmap-lookup-insert-new-rows/m-p/2235053#M24198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-08-19T10:23:02Z</dc:date>
    </item>
  </channel>
</rss>

