<?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: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200881#M3203</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While trying and loading the data in output database, i am getting below error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Couldn't parse value for column 'CID' in 'row1', value is '"5"'. Details: java.lang.NumberFormatException: For input string: ""5""&lt;BR /&gt;Couldn't parse value for column 'CID' in 'row1', value is '"48"'. Details: java.lang.NumberFormatException: For input string: ""48""&lt;/P&gt;
&lt;P&gt;PFA screenshots of tMap&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please suggest the needful&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuE0"&gt;tMap_Screenshot.png&lt;/A&gt;</description>
    <pubDate>Wed, 12 Dec 2018 10:33:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-12-12T10:33:21Z</dc:date>
    <item>
      <title>[resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200864#M3186</link>
      <description>Hello,
&lt;BR /&gt;I have a job that allows you to extract data from Excel and SQL Table to store in a SQL server database.
&lt;BR /&gt;I did the transformation fields String float.
&lt;BR /&gt;But I do not understand why I have this error:
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;PRE&gt;Exception in component tMap_2&lt;BR /&gt; java.lang.NumberFormatException: For input string: "0,0506609517898527"&lt;BR /&gt; Has sun.misc.FloatingDecimal.readJavaFormatString (Unknown Source)&lt;BR /&gt; Has java.lang.Float.parseFloat (Unknown Source)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.tFileInputDelimited_1Process (Bud.java:2332)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.runJobInTOS (Bud.java:4470)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.main (Bud.java:4291)&lt;BR /&gt;  disconnected&lt;/PRE&gt;
&lt;BR /&gt;
&lt;BR /&gt;Please find enclosed my tmap and my Job.
&lt;BR /&gt;What is the problem please? and how to solve it?
&lt;BR /&gt;Regards</description>
      <pubDate>Sat, 16 Nov 2024 11:23:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200864#M3186</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2024-11-16T11:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200865#M3187</link>
      <description>Hi &lt;B&gt;&lt;A href="http://www.talendforge.org/forum/profile.php?id=247252" target="_blank" rel="nofollow noopener noreferrer"&gt;slim1501&lt;/A&gt;,&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;What's your input source data type? How did you set your tMap? Did you set length in schema setting? Could you please upload your tmap editor screenshot into forum?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 16 Dec 2014 03:46:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200865#M3187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T03:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200866#M3188</link>
      <description>If you replace coma to dot then it will work. see the below statement.
&lt;BR /&gt;
&lt;PRE&gt;new BigDecimal("0,0506609517898527".replace(",","."))&lt;/PRE&gt;
&lt;BR /&gt;or you can use below methods to convert it.&amp;nbsp;
&lt;BR /&gt;
&lt;PRE&gt;String text = "1,234567";&lt;BR /&gt;NumberFormat nf_in = NumberFormat.getNumberInstance(Locale.GERMANY);&lt;BR /&gt;double val = nf_in.parse(text).doubleValue();&lt;BR /&gt;NumberFormat nf_out = NumberFormat.getNumberInstance(Locale.UK);&lt;BR /&gt;nf_out.setMaximumFractionDigits(3);&lt;BR /&gt;String output = nf_out.format(val);&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Dec 2014 07:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200866#M3188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T07:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200867#M3189</link>
      <description>hello,
&lt;BR /&gt; My data source is a file (.csv). type columns String.
&lt;BR /&gt; I set the size to 255 for each column.
&lt;BR /&gt; enclosed my print-screen.
&lt;BR /&gt; I tried with Double too, but it does not work
&lt;BR /&gt; like this:
&lt;BR /&gt; 
&lt;BR /&gt;
&lt;PRE&gt;Relational.ISNULL (fromMainFlow.CST_PROD_KG) == true? null: Double.parseDouble (fromMainFlow.CST_PROD_KG)&lt;BR /&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;BR /&gt;
&lt;PRE&gt;Exception in component tMap_2&lt;BR /&gt;java.lang.NumberFormatException: For input string: "0,05066095178985277"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at java.lang.Double.parseDouble(Unknown Source)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at bdd_budget_icp.bud_0_1.Bud.tFileInputDelimited_1Process(Bud.java:2345)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at bdd_budget_icp.bud_0_1.Bud.runJobInTOS(Bud.java:4482)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at bdd_budget_icp.bud_0_1.Bud.main(Bud.java:4303)&lt;/PRE&gt;
&lt;BR /&gt; Yours</description>
      <pubDate>Tue, 16 Dec 2014 10:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200867#M3189</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T10:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200868#M3190</link>
      <description>can you try the solution i provided. I am sure that will work for you.</description>
      <pubDate>Tue, 16 Dec 2014 11:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200868#M3190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T11:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200869#M3191</link>
      <description>First of all, thank you for your help.&lt;BR /&gt; I do not know where to put your code !! Is it in the Tmap (in each destination field)?</description>
      <pubDate>Tue, 16 Dec 2014 11:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200869#M3191</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T11:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200870#M3192</link>
      <description>My bad, I should explain it in better way.&amp;nbsp;
&lt;BR /&gt;so first line of code you can implement it directly in tMap.
&lt;BR /&gt;
&lt;PRE&gt;new BigDecimal(row1.yourcolumnName.replace(",","."))&lt;/PRE&gt;
&lt;BR /&gt;but for second solution, you have to create routine and add static method which return BigDecimal value, then write down mention code that can be work.&amp;nbsp;</description>
      <pubDate>Tue, 16 Dec 2014 11:37:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200870#M3192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T11:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200871#M3193</link>
      <description>sorry, I'm a beginner, I could not do it (routine) !! 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 16 Dec 2014 11:49:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200871#M3193</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T11:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200872#M3194</link>
      <description>Below link will help you to do that, but have you tried first solution? and what is the output?&lt;BR /&gt;&lt;A href="https://help.talend.com/search/all?query=Creating+a+user+routine&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;Creating a user routine and call it in a Job&lt;/A&gt;</description>
      <pubDate>Tue, 16 Dec 2014 12:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200872#M3194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T12:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200873#M3195</link>
      <description>I got this error: 
&lt;BR /&gt; 
&lt;PRE&gt;Exception in component tMap_2&lt;BR /&gt; java.lang.NumberFormatException&lt;BR /&gt; Has java.math.BigDecimal. &amp;lt;init&amp;gt; (Unknown Source)&lt;BR /&gt; Has java.math.BigDecimal. &amp;lt;init&amp;gt; (Unknown Source)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.tFileInputDelimited_1Process (Bud.java:3429)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.runJobInTOS (Bud.java:4067)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.main (Bud.java:3888)&lt;/PRE&gt; 
&lt;BR /&gt;Do I need to change something my database SQL server data (output)? 
&lt;BR /&gt;CREATE TABLE BUDGET_CA 
&lt;BR /&gt;(current_file varchar(255) PRIMARY KEY NOT NULL, 
&lt;BR /&gt;Date_Bud Date, 
&lt;BR /&gt;code_CLI&amp;nbsp; varchar(255), 
&lt;BR /&gt;NAT_CODE varchar(255), 
&lt;BR /&gt;code_article varchar(255), 
&lt;BR /&gt;ACTION_BUD2014 varchar(255), 
&lt;BR /&gt;Zone_Geo varchar(255), 
&lt;BR /&gt;Tx_RFA DECIMAL(19,5) , 
&lt;BR /&gt;CST_PROD_KG DECIMAL(19,5), 
&lt;BR /&gt;CST_LOG_KG DECIMAL(19,5) , 
&lt;BR /&gt;Kilo_BU DECIMAL(19,5) , 
&lt;BR /&gt;CA_BUD DECIMAL(19,5) , 
&lt;BR /&gt;CMA_BUD DECIMAL(19,5) , 
&lt;BR /&gt;Cpt_Comptbl_F varchar(255), 
&lt;BR /&gt;Code_Analytiques varchar(255) 
&lt;BR /&gt;); 
&lt;BR /&gt;Here join a screen-prints of my CSV file 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MC0U.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139074i664B483192B2F09C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MC0U.png" alt="0683p000009MC0U.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 16 Dec 2014 12:12:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200873#M3195</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T12:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200874#M3196</link>
      <description>what coma denotes in all the fields? is it a thousand separator or &amp;nbsp;a decimal point?&amp;nbsp;</description>
      <pubDate>Tue, 16 Dec 2014 12:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200874#M3196</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T12:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200875#M3197</link>
      <description>It's a decimal point</description>
      <pubDate>Tue, 16 Dec 2014 14:05:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200875#M3197</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T14:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200876#M3198</link>
      <description>then below statement should work, use below statement for all the columns which has numeric data and you want to convert it to big decimal.&amp;nbsp;&lt;BR /&gt;&lt;PRE&gt;new BigDecimal(row1.tx_rfa.replace(",","."))&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Dec 2014 14:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200876#M3198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-16T14:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200877#M3199</link>
      <description>I'll try,&lt;BR /&gt;But,Typing my database should I leave it as it is?&lt;BR /&gt; &lt;BR /&gt;&lt;PRE&gt;CREATE TABLE BUDGET_CA&lt;BR /&gt; (CURRENT_FILE varchar (255) NOT NULL PRIMARY KEY,&lt;BR /&gt; Date_Bud Date,&lt;BR /&gt; code_CLI varchar (255),&lt;BR /&gt; NAT_CODE varchar (255),&lt;BR /&gt; code_article varchar (255),&lt;BR /&gt; ACTION_BUD2014 varchar (255),&lt;BR /&gt; Zone_Geo varchar (255),&lt;BR /&gt; Tx_RFA DECIMAL (19,5)&lt;BR /&gt; CST_PROD_KG DECIMAL (19,5)&lt;BR /&gt; CST_LOG_KG DECIMAL (19,5)&lt;BR /&gt; Kilo_BU DECIMAL (19,5)&lt;BR /&gt; CA_BUD DECIMAL (19,5)&lt;BR /&gt; CMA_BUD DECIMAL (19,5)&lt;BR /&gt; Cpt_Comptbl_F varchar (255),&lt;BR /&gt; Code_Analytiques varchar (255)&lt;BR /&gt; );&lt;/PRE&gt;&lt;BR /&gt;Thank you for your help.</description>
      <pubDate>Tue, 16 Dec 2014 14:37:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200877#M3199</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T14:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200878#M3200</link>
      <description>I tried it, it did not work, I got this error:
&lt;BR /&gt; 
&lt;BR /&gt;
&lt;PRE&gt;Exception in component tMap_2&lt;BR /&gt; java.lang.NumberFormatException&lt;BR /&gt; Has java.math.BigDecimal. &amp;lt;init&amp;gt; (Unknown Source)&lt;BR /&gt; Has java.math.BigDecimal. &amp;lt;init&amp;gt; (Unknown Source)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.tFileInputDelimited_1Process (Bud.java:2296)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.runJobInTOS (Bud.java:4089)&lt;BR /&gt; Has bdd_budget_icp.bud_0_1.Bud.main (Bud.java:3910)&lt;/PRE&gt;
&lt;BR /&gt;
&lt;BR /&gt; I do not understand why it does not work !!!!!</description>
      <pubDate>Tue, 16 Dec 2014 14:46:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200878#M3200</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-16T14:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200879#M3201</link>
      <description>can you show me your input component schema and tmap output schema.&amp;nbsp;</description>
      <pubDate>Wed, 17 Dec 2014 07:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200879#M3201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-17T07:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200880#M3202</link>
      <description>The problem was the comma. I resolved; in each column that I want to convert I do this:&lt;BR /&gt; &lt;BR /&gt;&lt;PRE&gt;fromMainFlow.Tx_RFA! = null &amp;amp;&amp;amp; fromMainFlow.Tx_RFA.trim ().length ()&amp;gt; 0? &lt;BR /&gt;BigDecimal.valueOf (Double.valueOf (fromMainFlow.Tx_RFA.replaceAll (",", "."))): null&lt;/PRE&gt;&lt;BR /&gt;Thank you all for your help.&lt;BR /&gt; See you soon.&lt;BR /&gt; have a nice day</description>
      <pubDate>Wed, 17 Dec 2014 10:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200880#M3202</guid>
      <dc:creator>slim1501</dc:creator>
      <dc:date>2014-12-17T10:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200881#M3203</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While trying and loading the data in output database, i am getting below error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Couldn't parse value for column 'CID' in 'row1', value is '"5"'. Details: java.lang.NumberFormatException: For input string: ""5""&lt;BR /&gt;Couldn't parse value for column 'CID' in 'row1', value is '"48"'. Details: java.lang.NumberFormatException: For input string: ""48""&lt;/P&gt;
&lt;P&gt;PFA screenshots of tMap&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please suggest the needful&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LuE0"&gt;tMap_Screenshot.png&lt;/A&gt;</description>
      <pubDate>Wed, 12 Dec 2018 10:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200881#M3203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-12T10:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200882#M3204</link>
      <description>Please reply me ..its urgent</description>
      <pubDate>Wed, 12 Dec 2018 10:43:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200882#M3204</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-12T10:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Error in a Tmap : java.lang.NumberFormatException: For input string</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200883#M3205</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;You are inserting the value "CID"&amp;nbsp;from row1in to the field having data type as integer and it&amp;nbsp;should not consist of character value, like "".&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 08:10:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Error-in-a-Tmap-java-lang-NumberFormatException-For/m-p/2200883#M3205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-29T08:10:49Z</dc:date>
    </item>
  </channel>
</rss>

