Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Jennifer_siders
Contributor III
Contributor III

Lookup using a csv and Salesforce

Hi there,

 

I am new to Talend and building a small job to test the lookup functionality.

 

I have a csv file that has id value using which i need to get the value from 'Name' field. When i run the query from tsalesforceinput manually using the id, i do get the NAME value. can anyone correct me?

 

0683p000009MaJR.jpg

0683p000009MaOk.jpg

 

 

 

 

 

 

 

 

Labels (3)
1 Solution

Accepted Solutions
TRF
Champion II
Champion II

@Jennifer_siders fields name in tSalesforceInput component MUST match exactly with those from the query, including the case.

So, when you write "select id, name..." fields must be "id" and "name", not "Id" and "Name".

View solution in original post

7 Replies
manodwhb
Champion II
Champion II

@Jennifer_siders ,your job design is correct are you sure do you have matching records between csv and slaesforce object on id?

Jennifer_siders
Contributor III
Contributor III
Author

Hi @manodwhb  Thanks for the response.

 

There is indeed a value, i have even tried putting the same query with hard coding the value as shown but still no output.

0683p000009MaOu.jpg0683p000009MaP4.jpg0683p000009MaP9.jpg

manodwhb
Champion II
Champion II

@Jennifer_siders , I am sure that it is not matching with id, since you need to verify file do you have same id value ?

Jennifer_siders
Contributor III
Contributor III
Author

Yes,
manodwhb
Champion II
Champion II

@Jennifer_siders ,if yes you might have some space in file data, check that?

TRF
Champion II
Champion II

@Jennifer_siders fields name in tSalesforceInput component MUST match exactly with those from the query, including the case.

So, when you write "select id, name..." fields must be "id" and "name", not "Id" and "Name".

Jennifer_siders
Contributor III
Contributor III
Author

Thanks @TRF seems thats the trick while dealing with queries.