hiratake55 / RForcecom

RForcecom provides the connection to Force.com and Salesforce.com from R
http://cran.r-project.org/web/packages/RForcecom/index.html
Other
49 stars 25 forks source link

queryAll=TRUE #71

Open mcterrien opened 5 years ago

mcterrien commented 5 years ago

I need to read some past data from Task and I'm trying to use queryAll. My query is:

soqlQuery <- "SELECT Id, IsDeleted, Subject, Description FROM Task " rforcecom.query(session, soqlQuery, queryAll=TRUE)

And it returns: Error in rforcecom.query(session, soqlQuery, queryAll = TRUE) : NOT_FOUND: The requested resource does not exist

If I change queryAll to FALSE. The query works but it doesn't return the archived data.

Any help on it?

By the way, thanks for the great package. I've been using for more than one year now and it is the first time I have an issue.

Thanks!