function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
The_A-RodThe_A-Rod 

IdeaComment in Qlikview - "Custom read failed"

I get the error "Custom read failed" when I try and retrieve anything from the IdeaComment object.

I've tried posting this in the Qlikview forums, but no one can help me so i figured it could be a Salesforce setting.
Best Answer chosen by The_A-Rod
Kelly KKelly K
I was getting a similar error for the Task object. For me to fix it it was changing the way I had the CreateDate criteria listed. 

This is the correct way to list it with the salesforce connector version 13.1 (note I have convert SQL dates set to true).
LOAD Id, 
	CreatedDate;
SELECT Id, 
	CreatedDate
FROM Task
WHERE CreatedDate >= 2014-01-01 00:00:00;