<?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: tSalesforce_Input - Returning NULL values - I have amended schema in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309291#M80519</link>
    <description>I think from finding some old forum posts, Talend just doesn't support Parent to Child relationships in SOQL.&lt;BR /&gt;&lt;BR /&gt;I can get a child to parent working.&lt;BR /&gt;&lt;BR /&gt;Pretty disappointing if this functionality isn't in place.</description>
    <pubDate>Tue, 26 Jul 2016 10:01:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-07-26T10:01:35Z</dc:date>
    <item>
      <title>tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309285#M80513</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I am attempting to use a manual SOQL query from a tSalesforce_Input component:&lt;BR /&gt;"select&amp;nbsp;&lt;BR /&gt;Account.LLC_BI__lookupKey__c,&amp;nbsp;&lt;BR /&gt;Account.ID&lt;BR /&gt;,(Select Contact.LLC_BI__Home_City__c&lt;BR /&gt;,Contact.Home_Country__c&lt;BR /&gt;,Contact.LLC_BI__Home_Address__c&lt;BR /&gt;,Contact.LLC_BI__Home_Zipcode__c from Account.Contacts)&lt;BR /&gt;&amp;nbsp;from Account"&lt;BR /&gt;Which seems to run correctly - however, i get NULL results on all the columns from the 'Contact' module.&lt;BR /&gt;I have read a lot of information about amending the schema for the linked module (i.e. nameofcurrentmodule_nameoflinkedmodule_nameofcolumn) and so my schema looks like this:&lt;BR /&gt;LLC_BI__lookupKey__c&lt;BR /&gt;Id&lt;BR /&gt;Account_Contact_LLC_BI__Home_City__c&lt;BR /&gt;Account_Contact_Home_Country__c&lt;BR /&gt;Account_Contact_LLC_BI__Home_Address__c&lt;BR /&gt;Account_Contact_LLC_BI__Home_Zipcode__c&lt;BR /&gt;&lt;BR /&gt;Can anyone help me understand why my fields from the contact module returns only NULL Values?&lt;BR /&gt;&lt;BR /&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2016 10:17:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309285#M80513</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-20T10:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309286#M80514</link>
      <description>I've also tried approaching this as a child -&amp;gt; parent query and still get the same result. 
&lt;BR /&gt; 
&lt;BR /&gt;The new query: 
&lt;BR /&gt; 
&lt;BR /&gt;"Select Contact.AccountId 
&lt;BR /&gt;,Contact.Account.LLC_BI__lookupKey__c 
&lt;BR /&gt;, Contact.LLC_BI__Home_City__c 
&lt;BR /&gt;,Contact.Home_Country__c 
&lt;BR /&gt;,Contact.LLC_BI__Home_Address__c 
&lt;BR /&gt;,Contact.LLC_BI__Home_Zipcode__c from Contact" 
&lt;BR /&gt; 
&lt;BR /&gt;Schema: 
&lt;BR /&gt; 
&lt;BR /&gt;AccountId 
&lt;BR /&gt;Contact_Account_LLC_BI__lookupKey__c 
&lt;BR /&gt;LLC_BI__Home_City__c 
&lt;BR /&gt;Home_Country__c 
&lt;BR /&gt;LLC_BI__Home_Address__c 
&lt;BR /&gt;LLC_BI__Home_Zipcode__c 
&lt;BR /&gt; 
&lt;BR /&gt;I get the results from the Contact module, but NULLs from Account? 
&lt;BR /&gt; 
&lt;BR /&gt;Please can anyone help me?</description>
      <pubDate>Wed, 20 Jul 2016 13:07:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309286#M80514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-20T13:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309287#M80515</link>
      <description>Hi,&lt;BR /&gt;There is some limitations when working with custom SOQL queries into TOS.&lt;BR /&gt;Maybe this post could help you&amp;nbsp;.&lt;BR /&gt;Also, the schema fields and Salesforce fields mus have the same name or you'll get a NULL value (in fact schema's field with a name different of the Salesforce fields are not populated and remain null).&amp;nbsp;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Thu, 21 Jul 2016 12:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309287#M80515</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2016-07-21T12:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309288#M80516</link>
      <description>@TRF - Thank you - I am aware of the limitations particularly relating to the schema, but my queries aren't particularly complex, and I have followed the user guide on how to edit the schema with the module name and columns etc. but it still returns only NULL values.
&lt;BR /&gt;
&lt;BR /&gt;Can anyone suggest where I have gone wrong?</description>
      <pubDate>Thu, 21 Jul 2016 14:12:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309288#M80516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-21T14:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309289#M80517</link>
      <description>@monkeyb33f - can you share the link to the user guide you mentioned in your last post?
&lt;BR /&gt;Regards,
&lt;BR /&gt;FT</description>
      <pubDate>Fri, 22 Jul 2016 13:13:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309289#M80517</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2016-07-22T13:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309290#M80518</link>
      <description>@ TRF - Sure.&amp;nbsp;
&lt;BR /&gt;
&lt;BR /&gt;The link for the query i used was:
&lt;BR /&gt;[font=Calibri, sans-serif]
&lt;FONT size="2"&gt;&lt;A href="https://developer.salesforce.com/blogs/developer-relations/2013/05/basic-soql-relationship-queries.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.salesforce.com/blogs/developer-relations/2013/05/basic-soql-relationship-queries.html&lt;/A&gt;&lt;/FONT&gt;[/font]
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT face="Calibri," sans-serif=""&gt;The link for the schema guide was:&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT face="Calibri," sans-serif=""&gt;&lt;A href="https://jira.talendforge.org/browse/TDI-6612" rel="nofollow noopener noreferrer"&gt;https://jira.talendforge.org/browse/TDI-6612&lt;/A&gt;&lt;BR /&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT face="Calibri," sans-serif=""&gt;Many thanks!&lt;/FONT&gt;</description>
      <pubDate>Fri, 22 Jul 2016 13:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309290#M80518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-22T13:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: tSalesforce_Input - Returning NULL values - I have amended schema</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309291#M80519</link>
      <description>I think from finding some old forum posts, Talend just doesn't support Parent to Child relationships in SOQL.&lt;BR /&gt;&lt;BR /&gt;I can get a child to parent working.&lt;BR /&gt;&lt;BR /&gt;Pretty disappointing if this functionality isn't in place.</description>
      <pubDate>Tue, 26 Jul 2016 10:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSalesforce-Input-Returning-NULL-values-I-have-amended-schema/m-p/2309291#M80519</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-26T10:01:35Z</dc:date>
    </item>
  </channel>
</rss>

