Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Dev Space

Customize and extend the power of Alteryx with SDKs, APIs, custom tools, and more.
SOLVED

Salesforce Input Connector - Selecting Deleted Records

mpurdy
8 - Asteroid

 

I was wondering if it was possible to select deleted records using the Salesforce Input Connector? Thanks in advance for any help that you can provide.

31 REPLIES 31
NeilR
Alteryx Alumni (Retired)

You should be able to by adding the following to the "Where Clause (SOQL)" input parameter:

isDeleted = TRUE
mpurdy
8 - Asteroid

Thanks for the feedback. I have tried this for the Account object in Salesforce but it does not return any records (this is the only filter I am using in the Salesforce Input tool).

I log into SF (using the same credentials that I have used in Alteryx) and I can see Accounts that have been deleted in the recyling bin.

I have read that you have to execute your SOQL query in APEX to select deleted records (and use the keywords "ALL ROWS") and I assume that Alteryx would have this limitation as well?

Thanks in advance for any insight you can offer.

NeilR
Alteryx Alumni (Retired)
In that case it may not be possible with the REST API, which is what Alteryx uses to pull data from Salesforce, but probably worth checking with your SFDC rep or admin before giving up.
mpurdy
8 - Asteroid

I have done some more reading and research and found that if I modify the link in the file: "Alteryx\bin\RuntimeData\Macros\Supporting_Macros\SalesforceInput" from "/services/data/v20.0/query/?q=" to "/services/data/v29.0/queryAll/?q=" then I can pick up the deleted records - using "IsDeleted = TRUE". Do you know what the implications are of making this change are? Thanks

mpurdy
8 - Asteroid

I was reading from here:

https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_queryall.htm

I assume the only implication is that I would have to be careful with deleted records (filter them in or out depending on what I wanted).

 

Is it possible to make another SalesforceInput (called SalesforceInput-QueryAll) and add it as a tool in Alteryx? I have created the macro but none of the nice UI features are showing (that the SalesforceInput tool has). Thanks!

NeilR
Alteryx Alumni (Retired)

I can't speak to the implications but I can help you make a new tool using the modified macro that you created (nice job with that, by the way).

 

  1. Navigate to the HtmlPlugins folder within your Alteryx installation (eg C:\Program Files\Alteryx\bin\HtmlPlugins) and make a copy of the "Salesforce Input" folder, then rename the copy what you'd like the new tool to be called (eg "Salesforce Input - Query All")
  2. Within the new folder that you just created, rename "Salesforce InputConfig.xml" to "[New folder name]Config.xml" (eg "Salesforce Input - Query AllConfig.xml").
  3. Open the aforementioned xml file in a text editor. Change the reference to the underlying macro to point to the new custom macro you created (eg "Supporting_Macros/SalesforceInput.yxmc" -> "Supporting_Macros/SalesforceInput-QueryAll.yxmc"

At this point, if you restart Alteryx, you should have a working version of your new tool in the "Laboratory" tool category.

 

mpurdy
8 - Asteroid

Thanks Neil. I have done all the updates and things are working nicely. I will use this connector for selecting IsDeleted = TRUE records.

Digging through all of the backend Alteryx stuff has opened my eyes to the possibilities of other performance improvements I can make to my jobs. Thanks for all your help and prompt answers. I'm sure I will be back with more questions :-).

nick_ceneviva
11 - Bolide

Digging this post back up from a year ago.  Not sure if the Saleforce Input Tool has been updated but I can't seem to find where the update to the macro needs to be made in order to get the deleted and even archived records. 

 

Any help is greatly appreciated!

 

Thanks.

mpurdy
8 - Asteroid

No the Salesforce Input tool has not been updated to include IsDeleted records. Could you please be a bit more specific with your comments "I can't seem to find where the update to the macro needs to be made in order to get the deleted and even archived records"?

 

To make it work I had to go to: C:\Program Files\Alteryx\bin\RuntimeData\Macros\Supporting_Macros\SalesforceInput.yxmc and then change the references to the old REST API from "/services/data/v20.0/query/?q=" to "/services/data/v29.0/queryAll/?q=" in the "url" (first formula tool) in the section "get all fields to maintain saleforce order". But if you save this it will affect all your jobs that use the Salesforce Input tool and anyone else who uses the tool and that it why I was trying to make a copy and rename it.

 

Let me know if you have any further questions.