Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am attempting to use a manual SOQL query from a tSalesforce_Input component:
"select
Account.LLC_BI__lookupKey__c,
Account.ID
,(Select Contact.LLC_BI__Home_City__c
,Contact.Home_Country__c
,Contact.LLC_BI__Home_Address__c
,Contact.LLC_BI__Home_Zipcode__c from Account.Contacts)
from Account"
Which seems to run correctly - however, i get NULL results on all the columns from the 'Contact' module.
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:
LLC_BI__lookupKey__c
Id
Account_Contact_LLC_BI__Home_City__c
Account_Contact_Home_Country__c
Account_Contact_LLC_BI__Home_Address__c
Account_Contact_LLC_BI__Home_Zipcode__c
Can anyone help me understand why my fields from the contact module returns only NULL Values?
Many thanks!