#1MinuteTip#TDX23 Today, Salesforce and OpenAI introduced the ChatGPT app for Slack.
Built by OpenAI on the Slack platform, the app integrates ChatGPT’s powerful AI technology to deliver instant conversation summaries, research tools, and writing assistance directly in Slack to help millions of companies work more productively.
This new app combines knowledge found in Slack with the intelligence of ChatGPT, empowering customers with the information they need to move work forward faster.
To learn more about this, please navigate to the news release article (link below).
ChatGPT is an is a AI powered chatbot that will provide you answers to any questions that you ask. It was released as a prototype in late November ‘2022 and has become a rave in the technology world. It stands for “Chat Generative Pre-trained Transformer”.
Though you can ask any question under the sun, I experimented with asking questions related to Salesforce and the responses were mind boggling. I think this takes the technology in general and AI in particular to another level.
Here is an example. I asked chatGPT “Give me salesforce apex code to update all contact addresses with account address for an account”
And here is the code that chatGPT generated for me. Unbelievable!
// Retrieve the Account record
Account account = [SELECT Id, BillingStreet, BillingCity, BillingState, BillingPostalCode, BillingCountry FROM Account WHERE Id = :accountId];
// Retrieve all the Contacts for the Account
List<Contact> contacts = [SELECT Id, MailingStreet, MailingCity, MailingState, MailingPostalCode, MailingCountry FROM Contact WHERE AccountId = :accountId];
// Update the address fields of each Contact with the Account's address
for (Contact contact : contacts) {
contact.MailingStreet = account.BillingStreet;
contact.MailingCity = account.BillingCity;
contact.MailingState = account.BillingState;
contact.MailingPostalCode = account.BillingPostalCode;
contact.MailingCountry = account.BillingCountry;
}
// Save the updated Contacts
update contacts;
Want to have some fun? Try these questions and see what ChatGPT comes up with. 😊
How to learn Salesforce?
How to create custom object in Salesforce?
How do I secure my Salesforce Org?
What are the career options in Salesforce?
How much can I earn as Salesforce Architect?
What is the difference between Aura Component and LWC in Salesforce?
Which one is a better automation tool in Salesforce – Workflow Rule, Process Builder or Salesforce Flow?
What are best practices for Salesforce Apex?
What are some Salesforce Admin Interview Questions?
How does Salesforce compare with AWS, Google Cloud and Microsoft?
Please give me the code for a simple data entry form in Salesforce LWC?
How do I update all contacts address when account address changes in Salesforce?
How do I create a Flow in Salesforce to delete all cases for an Account?
#1MinuteTip#SalesforceWinter23 Use the power of AI to predict what happens next in your business. The Einstein Prediction Builder learning map provides curated resources to help you explore different aspects of building a prediction from exploration to troubleshooting.
#1MinuteTip#SalesforceSummer22 Einstein Email Insights can now flag objects made in the email. Help sales reps stay on top of critical emails that mention concerns that are stopping an engagement from moving forward. Insights make it easier to send the perfect response at the perfect time.
#1MinuteTip#SalesforceSummer22 Natural language search (NLS) makes article management effortless. NLS navigates your Salesforce Knowledge base and identifies your most common article scenarios.
NLS recognizes what you’re searching for as you filter articles by publication, status, creation date, or author. Specify what you’re looking for in the search bar, and NLS returns a relevant list of articles that match your criteria.