Steven M. Mortimer

Results 77 comments of Steven M. Mortimer

Great, no errors is a good thing. I suggest you continue interrogating that file and checking against the Salesforce UI to figure out where the records are being lost.

Would you mind sharing some code of what finally worked? Something where you set the `colnames` argument based on the expected names?

If you go to directly to the result URL in your browser, do you get the full CSV? The URL I'm talking about is formed in the R code like...

You should be able to follow the code back through. ``` endpointPath

@vibhuthk Are you trying to get the values that the report generates? Or just the metadata from the Report object? I think you'll need to implement the Report REST API...

The Bulk API should have been included in the package starting at v0.8.0. If you type `?RForcecom` and review the package index samples, you should see the following examples of...

@ilcca Thanks for bringing up the issue. I've fixed and submitted a PR here: https://github.com/hiratake55/RForcecom/pull/35 The feature hasn't been merged yet, so if you really want to use it then...

Updating does not require an external id. Simply include a column entitled "Id" in your data, set the bulk job to "update" and Salesforce will update the corresponding records based...

Yes. "Id" here means the unique ID generated by Salesforce that corresponds to the record. If you want to update based on External Id, then this might be a good...

@Btibert3 You'll have to do it in 2 passes, you cannot do it simultaneously because bulk jobs can only target one object at a time. Attachments must go to the...