Skip to main content
Participant
January 11, 2024
Answered

Need help with Acrobat Sign and Salesforce batch query

  • January 11, 2024
  • 1 reply
  • 249 views

Hello Community,

  Can someone guide me on how to write a simple query to create batch agreements for the following:

 

Contacts

"Eligible for Credits" = true (checkbox)

 

This batch creation is not as easy as the salesperson made it sound!

 

Thanks,

 

Steven

 

 

This topic has been closed for replies.
Correct answer Steven34720641cqer

Hi Everyone,

  I found out how to complete this by using "ChatGPT".  lol.  

 

Here is an example of the query I created just so I can get a very simple set of results.

 

SELECT FirstName, LastName, Id, Email, Eligible_for_Credits__c FROM Contact WHERE Eligible_for_Credits__c = true
 
Again.  The results that I'm asking for is this:
 
Show me a list of "contacts" where the "checkbox" for "Eligible for Credits" is checked.

1 reply

Steven34720641cqerAuthorCorrect answer
Participant
January 11, 2024

Hi Everyone,

  I found out how to complete this by using "ChatGPT".  lol.  

 

Here is an example of the query I created just so I can get a very simple set of results.

 

SELECT FirstName, LastName, Id, Email, Eligible_for_Credits__c FROM Contact WHERE Eligible_for_Credits__c = true
 
Again.  The results that I'm asking for is this:
 
Show me a list of "contacts" where the "checkbox" for "Eligible for Credits" is checked.