Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Salesforce.com Connector Issue with Case Object?

Hello friends -

I just downloaded and installed the QV Salesforce.com connector for QV10. For most things I've tried so far, it works great. I've even made some dashboards out of opportunity and account data. Revealed some helpful stuff right away. But I cannot make it extract case data. Here is the error text I'm bumping into:

SQL##f - SqlState: 37000, ErrorCode: 10179, ErrorMsg: [QlikTech][ODBC QlikView SalesForce Connector driver][Salesforce SQL]Syntax error in SQL statement. syntax error line 2 at or after token <Case>.[10179]
SQL SELECT *
FROM Salesforce.Case

My guess is that Somewhere it thinks that 'case' is a reserved word here. However, I'm just trying to extract help desk type data from SFDC.

Has anyone bumped into this before? Can you help?

Eric Carlson

Sioux Falls, SD USA

1 Solution

Accepted Solutions
stephencredmond
Luminary Alumni
Luminary Alumni

Hi Eric,

You are correct, "Case" is a reserved word for SQL. Just means you need to employ some square brackets or double-quotes:



Case:
SQL SELECT * FROM "Case";




View solution in original post

2 Replies
stephencredmond
Luminary Alumni
Luminary Alumni

Hi Eric,

You are correct, "Case" is a reserved word for SQL. Just means you need to employ some square brackets or double-quotes:



Case:
SQL SELECT * FROM "Case";




Not applicable
Author

Thank you Stephen, that worked perfectly!