<?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 Trying to resolve Error Message in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334827#M103451</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me resolve this error.&lt;/P&gt;&lt;P&gt;I am not seeing a boolean data type but I am getting this error message...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error Line: 3835&lt;/P&gt;&lt;P&gt;Detail Message: Type mismatch: cannot convert from boolean to String&lt;/P&gt;&lt;P&gt;There may be some other errors caused by JVM compatibility. Make sure your JVM setup is similar to the studio.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Mar 2021 14:59:36 GMT</pubDate>
    <dc:creator>Edi1</dc:creator>
    <dc:date>2021-03-30T14:59:36Z</dc:date>
    <item>
      <title>Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334827#M103451</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me resolve this error.&lt;/P&gt;&lt;P&gt;I am not seeing a boolean data type but I am getting this error message...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error Line: 3835&lt;/P&gt;&lt;P&gt;Detail Message: Type mismatch: cannot convert from boolean to String&lt;/P&gt;&lt;P&gt;There may be some other errors caused by JVM compatibility. Make sure your JVM setup is similar to the studio.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 14:59:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334827#M103451</guid>
      <dc:creator>Edi1</dc:creator>
      <dc:date>2021-03-30T14:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334828#M103452</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you share your Talend job design.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've experienced similar when you use the shorthand java if/then/else, you need to cast the result to a string:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{condition}?&lt;/P&gt;&lt;P&gt;      "value if true"&lt;/P&gt;&lt;P&gt;      :&lt;/P&gt;&lt;P&gt;      "value if false"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(String)({condition}?&lt;/P&gt;&lt;P&gt;       "value if true"&lt;/P&gt;&lt;P&gt;       :&lt;/P&gt;&lt;P&gt;       "value if false")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334828#M103452</guid>
      <dc:creator>David_Beaty</dc:creator>
      <dc:date>2021-03-30T15:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334829#M103453</link>
      <description>&lt;P&gt;Ok, You might be on point with this. I think I will edit as you suggested then reply later on if I still need help.. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 15:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334829#M103453</guid>
      <dc:creator>Edi1</dc:creator>
      <dc:date>2021-03-30T15:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334830#M103454</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I think this error is coming from this line of codes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;row1.Post_Key().equals("debit")? "60" : "70"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I received error above cannot convert from boolean to string so I cast to a string like this, below. It is still not working. I am getting error as stated above.&lt;/P&gt;&lt;P&gt;((String) row1).Post_Key().equals("debit")? "60" : "70"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 14:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334830#M103454</guid>
      <dc:creator>Edi1</dc:creator>
      <dc:date>2021-03-31T14:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334831#M103455</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming &lt;I&gt;Post_Key&lt;/I&gt; is a column on &lt;I&gt;row1&lt;/I&gt;, then you should use something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(String)("debit".equals(row1.Post_Key)?"60" : "70")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Checking the column is equal to the literal value is null safe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 14:50:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334831#M103455</guid>
      <dc:creator>David_Beaty</dc:creator>
      <dc:date>2021-03-31T14:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334832#M103456</link>
      <description>&lt;P&gt;Ok, Thanks David I will try this.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 17:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334832#M103456</guid>
      <dc:creator>Edi1</dc:creator>
      <dc:date>2021-03-31T17:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334833#M103457</link>
      <description>&lt;P&gt;Connect your components first !!!! You will always have errors if you don’t connect components Edi !!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 19:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334833#M103457</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-03-31T19:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334834#M103458</link>
      <description>&lt;P&gt;Cause the boolean error is because the input is not connected &lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 19:21:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334834#M103458</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-03-31T19:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to resolve Error Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334835#M103459</link>
      <description>&lt;P&gt;I have it connected back before I run it. I just displaying all the palettes I am using. The error is somewhere in the tMap code. All the other tfiles are good. &lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 19:42:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trying-to-resolve-Error-Message/m-p/2334835#M103459</guid>
      <dc:creator>Edi1</dc:creator>
      <dc:date>2021-03-31T19:42:28Z</dc:date>
    </item>
  </channel>
</rss>

