RForcecom icon indicating copy to clipboard operation
RForcecom copied to clipboard

RForcecom provides the connection to Force.com and Salesforce.com from R

Results 33 RForcecom issues
Sort by recently updated
recently updated
newest added

Hello, I'm having some issues with encoding when I use `rforcecom.create()` inside a shiny app. When I use `rforcecom.create()` directly in the console, accents are transmitted in Salesforce as expected....

I have found that the number of columns returned by rforcecom.query vary because columns where all values are NULL are not included in the output at all. Is this by...

I have problems to get some objects descriptions, like 'opportunity and Lead. ERROR : Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply...

Hi, I am struggling to update null values back to some date fields using rforcecom.update function. Code snippet where issue comes: for(my_index in 1:nrow(test)) { objectName= "Case_Extension__c" id

``` > columnTest sapply(columnTest, class) Id Name Amount CloseDate IsWon "factor" "factor" "numeric" "factor" "factor" ``` I would expect: ``` > sapply(columnTest, class) Id Name Amount CloseDate IsWon "character" "character"...

I'm getting the "EOF within quoted string error" while trying to bulk query information from Salesforce. ``` query

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

An error happens when retrieving some custom objects' description. ``` Error in data.frame(active = "true", defaultValue = "false", label = "[some proprietary info...]", : arguments imply differing number of rows:...

As I said in the issue there were some problems with the use of accented characters in soqlQuery. I was able to solve it by changing the method curlEscape() to...

Hi, I've been having some trouble querying conditional on names with accented characters such as "Córdoba". Luckily I looked the code and was able to solve the problem by modifying...