<?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: &amp;quot;Variable can not be resolved&amp;quot; error for multiple tBigQueryInput's in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210197#M8716</link>
    <description>&lt;P&gt;I have encountered the same issue where in a tExtractxml component its trying to cast datatypes which has not been coded to cast. Like casting a decimal to Date and Date to a Big Decimal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Badri Nair&lt;/P&gt;</description>
    <pubDate>Tue, 05 Feb 2019 09:08:52 GMT</pubDate>
    <dc:creator>badri-nair</dc:creator>
    <dc:date>2019-02-05T09:08:52Z</dc:date>
    <item>
      <title>"Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210191#M8710</link>
      <description>&lt;P&gt;I am getting the following error if there are more than one tBigQueryInput's:&lt;/P&gt; 
&lt;PRE&gt;Detail Message: jobId_tBigQueryInput_2 cannot be resolved to a variable&lt;/PRE&gt; 
&lt;P&gt;This is my job and the configuration of tBigQueryInput_2. But the config of tBigQueryInput_1 is the same:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.png" style="width: 690px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M2X1.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134095i1B461F9EFE76BFBA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M2X1.png" alt="0683p000009M2X1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;In the source code, I am getting the following for tBigQueryInput_1, which is correct:&lt;/P&gt; 
&lt;PRE&gt;com.google.cloud.bigquery.JobId jobId_tBigQueryInput_1 = com.google.cloud.bigquery.JobId
		.of(java.util.UUID.randomUUID().toString());
com.google.cloud.bigquery.Job job_tBigQueryInput_1 = bigquery_tBigQueryInput_1
		.create(com.google.cloud.bigquery.JobInfo
			.newBuilder(queryConfiguration_tBigQueryInput_1)
			.setJobId(jobId_tBigQueryInput_1).build());&lt;/PRE&gt; 
&lt;P&gt;For tBigQueryInput_2, I am getting an error on the last line of the following code:&lt;/P&gt; 
&lt;PRE&gt;com.google.cloud.bigquery.JobId jobId_tBigQueryInput_1 = com.google.cloud.bigquery.JobId
		.of(java.util.UUID.randomUUID().toString());
com.google.cloud.bigquery.Job job_tBigQueryInput_2 = bigquery_tBigQueryInput_2
		.create(com.google.cloud.bigquery.JobInfo
			.newBuilder(queryConfiguration_tBigQueryInput_2)
			.setJobId(jobId_tBigQueryInput_2).build());&lt;/PRE&gt; 
&lt;P&gt;The error is on the first line of the above code. Variable `jobId_tBigQueryInput_1` is beeing initialized, but on the last line it references `jobId_tBigQueryInput_2`, which does not exist.&lt;/P&gt; 
&lt;P&gt;It works for tBigQueryInput_1, but fails for any other tBigQueryInput's.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Talend Version used: 7.1.1.20181026_1147&lt;/P&gt; 
&lt;P&gt;The same job has worked on Taled Version 7.0.1.2018.0411_1414&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Best regards,&lt;/P&gt; 
&lt;P&gt;Simon&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:47:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210191#M8710</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T06:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210192#M8711</link>
      <description>&lt;P&gt;I think it is because of the Group By clause. Since, in the query no aggregation is involved to support a group by. Could you please check and confirm?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 16:34:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210192#M8711</guid>
      <dc:creator>dipanjan93</dc:creator>
      <dc:date>2019-01-22T16:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210193#M8712</link>
      <description>&lt;P&gt;Thank dipanjan93 for the reply. But I do not see how that can solve the problem. The job does not compile. So the query is never evaluated.&lt;/P&gt; 
&lt;P&gt;IMO it is an error in how Talend creates the code for tBigQueryInput processors.&lt;/P&gt; 
&lt;P&gt;Anyway, I tried your suggestion by simply removing the GROUP BY clause in both queries. The problem persists.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I've created a bug report: &lt;A href="https://jira.talendforge.org/browse/TBD-8265" target="_self" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TBD-8265&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 09:30:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210193#M8712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-24T09:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210194#M8713</link>
      <description>&lt;P&gt;Thank you for the reply dipanjan93. I tried removing the GROUP BY clause in the queries. It did not solve the problem.&lt;/P&gt; 
&lt;P&gt;But the problem is, that the job does not even build. I have the error in the Code view of the job, so the queries are not evaluated or executed.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I created a bug report: &lt;A href="https://jira.talendforge.org/browse/TBD-8265" target="_self" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TBD-8265&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;(my first response has vanished. No idea what happend)&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 10:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210194#M8713</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-24T10:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210195#M8714</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;It seems to be having troubles with the jobId for the second and additional tBigQueryInput components.&lt;/P&gt;
&lt;P&gt;It is a bug on V 7.1.1 and our developpers are working on this issue. It could be fixed on V 7.2.1.&lt;/P&gt;
&lt;P&gt;We will keep you posted.&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 07:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210195#M8714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-29T07:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210196#M8715</link>
      <description>&lt;P&gt;Hi Sabrina,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have just encountered the exact same issue with my job also - and spotted the same issue with the generated java code re-intantiating the previously defined&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;jobId_tBigQueryInput_1 instead of&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;jobId_tBigQueryInput_2.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;What is the workaround for this whilst we wait for the bugfix?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Richard&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 11:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210196#M8715</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-04T11:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210197#M8716</link>
      <description>&lt;P&gt;I have encountered the same issue where in a tExtractxml component its trying to cast datatypes which has not been coded to cast. Like casting a decimal to Date and Date to a Big Decimal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Badri Nair&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 09:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210197#M8716</guid>
      <dc:creator>badri-nair</dc:creator>
      <dc:date>2019-02-05T09:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210198#M8717</link>
      <description>I have too same problem and it is indeed a feature which is important. Glad that it is addressed as defect. But is there a temporary solution for it ? Thank you in advance.</description>
      <pubDate>Thu, 21 Mar 2019 14:36:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210198#M8717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-21T14:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210199#M8718</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LPJzAAO"&gt;@ssomanchi&lt;/A&gt;,&lt;/P&gt; 
&lt;P&gt;It is a bug and the fix versions are 7.1.2 and 7.2.1. Could you please clarify in which Talend version/edition you are?&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 03:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210199#M8718</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-22T03:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210200#M8719</link>
      <description>&lt;P&gt;Hi Sabrina.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for this information, I am on version 7.1.1.&lt;/P&gt; 
&lt;P&gt;also I raised this issue, if you can confirm if this is known issue.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCngCCAS#M95066" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Issue-when-Using-2-tBigQueryOutput-in-1-job/m-p/155480#M95066&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;we are in phase of evaluating the ETL as Talend. These are important tests and we are using BQ as our source/target.&lt;/P&gt; 
&lt;P&gt;thanks in advance&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, 22 Mar 2019 06:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210200#M8719</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-22T06:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210201#M8720</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LPJzAAO"&gt;@ssomanchi&lt;/A&gt;,&lt;/P&gt; 
&lt;P&gt;We need more information about your another issue:&lt;A title="https://community.talend.com/t5/Design-and-Development/Issue-when-Using-2-tBigQueryOutput-in-1-job/m-p/155480#M95066" href="https://community.qlik.com/s/feed/0D53p00007vCngCCAS#M95066" target="_self"&gt;https://community.talend.com/t5/Design-and-Development/Issue-when-Using-2-tBigQueryOutput-in-1-job/m-p/155480#M95066&lt;/A&gt;.&lt;/P&gt; 
&lt;P&gt;Best regards&lt;/P&gt; 
&lt;P&gt;Sabrina&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2019 08:21:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210201#M8720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-22T08:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210202#M8721</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will this be fixed in 7.3 or 8.0?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 12:49:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210202#M8721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-29T12:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210203#M8722</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also this bug in 7.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I give you the details you need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to have th bug's link so we can now whats the resolution state?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 12:54:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210203#M8722</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-29T12:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210204#M8723</link>
      <description>The link to my ticket is given above. It has been closed as duplicate of TBD-8102. 
&lt;BR /&gt;I guess the link to this issue is 
&lt;A href="https://jira.talendforge.org/plugins/servlet/mobile#issue/TBD-8102" target="_blank" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/plugins/servlet/mobile#issue/TBD-8102&lt;/A&gt; 
&lt;BR /&gt;But I don't have access to see it.</description>
      <pubDate>Fri, 29 Mar 2019 13:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210204#M8723</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-29T13:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210205#M8724</link>
      <description>&lt;P&gt;Neither do I&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 14:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210205#M8724</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-29T14:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210206#M8725</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/0053p000007LMZyAAO"&gt;@Moe&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;TBD-8102 is fixed in &lt;SPAN class="value"&gt; &lt;SPAN class="shorten" style="height: auto;"&gt; &lt;A title="7.2.1 Created from Aha! https://talend.aha.io/releases/BD-R-11" href="https://jira.talendforge.org/issues/?jql=project+%3D+TBD+AND+fixVersion+%3D+7.2.1" target="_blank" rel="nofollow noopener noreferrer"&gt;7.2.1&lt;/A&gt;, &lt;A title="7.1.2 " href="https://jira.talendforge.org/issues/?jql=project+%3D+TBD+AND+fixVersion+%3D+7.1.2" target="_blank" rel="nofollow noopener noreferrer"&gt;7.1.2&lt;/A&gt;&amp;nbsp; &lt;/SPAN&gt; and the security level is Talend internal. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="value"&gt;Best regards&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="value"&gt;Sabrina&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG class="name"&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 03:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210206#M8725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-01T03:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: "Variable can not be resolved" error for multiple tBigQueryInput's</title>
      <link>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210207#M8726</link>
      <description>&lt;P&gt;Hello &lt;A href="https://community.qlik.com/s/profile/null"&gt;@amarhaba&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Here exists a jira issue: TBD-8102&lt;SPAN&gt; "&lt;SPAN class="link-summary"&gt;tBigQueryInput - Always fails when you have more than one".It's fixed in &lt;SPAN class="value"&gt; &lt;SPAN class="shorten" style="height: auto;"&gt; &lt;A title="7.2.1 Created from Aha! https://talend.aha.io/releases/BD-R-11" href="https://jira.talendforge.org/issues/?jql=project+%3D+TBD+AND+fixVersion+%3D+7.2.1" target="_blank" rel="nofollow noopener noreferrer"&gt;7.2.1&lt;/A&gt;, &lt;A title="7.1.2 " href="https://jira.talendforge.org/issues/?jql=project+%3D+TBD+AND+fixVersion+%3D+7.1.2" target="_blank" rel="nofollow noopener noreferrer"&gt;7.1.2&lt;/A&gt; &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="link-summary"&gt;The security level is Talend internal. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class="link-summary"&gt;&lt;SPAN class="value"&gt;Only Talend employees will be able to see the issue. Let us know if there is any help we can give.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="link-summary"&gt;&lt;SPAN class="value"&gt;Best regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="link-summary"&gt;&lt;SPAN class="value"&gt;Sabrina&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 03:54:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/quot-Variable-can-not-be-resolved-quot-error-for-multiple/m-p/2210207#M8726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-01T03:54:21Z</dc:date>
    </item>
  </channel>
</rss>

