Steven M. Mortimer

Results 77 comments of Steven M. Mortimer

@jimclemens At the beginning of your script, run `options(stringsAsFactors=F)`. This will force everything to come back as a character. Then use `as.numeric()` to cast the columns when you do further...

@mbhfromla Record Types are assigned a unique 18-character identifier and stored in the RecordType object. Query that object to find out the associated names. Once you have the Id of...

@BriBecker I hope to have fixed this issue with #51, but figured I'd respond with a workaround for others while waiting for the PR to be reviewed. The issue with...

@seharnoorshah I've sometimes got funny things like this and I assume it's something with the HTTP messaging between your computer and the salesforce server. You can do 2 things: 1....

@mwolfe07 With Salesforce it's always a challenge to reproduce errors from your system because we can't access it, therefore you'll have to help troubleshoot. I suspect the error is caused...

Yes, your query might take awhile, especially if it recordset is large. You can monitor the progress of all your API calls in the Salesforce UI for more details. Just...

Yes, your query might take awhile, especially if the recordset is large. You can monitor the progress of all your API calls in the Salesforce UI for more details. Just...

`rforcecom.api.getBulkEndPoint` is not an exported function. Just add `RForcecom:::` in front of it like this: ``` RForcecom:::rforcecom.api.getBulkEndPoint ``` As far as things working 75% of the time, I'd recommend checking...

Add `row.names=NULL` to `read.csv`