Apex · Lightning · Salesforce · Trigger

Asynchronous Apex Trigger using Change Data Capture

Change Data Capture event is a notification that Salesforce sends when a change to a Salesforce record occurs as part of a create, update, delete, or undelete operation. When we are saving a record in salesforce it causes the platform to start apex transaction . Change event triggers run asynchronously after the apex transaction is… Continue reading Asynchronous Apex Trigger using Change Data Capture

Apex · Email Service · Integration · Outlook · Salesforce · Trigger

Send ICS calendar invitations for Outlook meetings

Here we are going to send the meeting invites from salesforce using ICS calendar to our outlook. In general ICS is the  iCalendar/.ics/.ical file and it is used to store the calendar information. Whenever you export anything a outlook, google, etc., calendar  it will automatically save as .ics file. New and updated meetings are sent… Continue reading Send ICS calendar invitations for Outlook meetings

Apex · Integration · REST · Salesforce Einstein · Trigger

Einstein Intent and Einstein Sentiment Analysis on Facebook Posts

Einstein Language  Einstein Language Is used to build natural language processing into your apps and unlock insights within text. Einstein Language contains two NLP services: Einstein Sentiment Einstein Intent Einstein Intent—Categorize unstructured text into user-defined labels to better understand what users are trying to accomplish. Leverage the Einstein Intent API to analyze text from emails,… Continue reading Einstein Intent and Einstein Sentiment Analysis on Facebook Posts

Apex · Lightning · Salesforce · Trigger

Einstein Intent Analysis Using Einstein Language on Salesforce Chatter

Einstein Intent Einstein Intent helps to categorize unstructured data into labels using its Intent API for a better understanding of what user is trying to accomplish. In Salesforce, Einstein Intent API allows understanding the customer inquiries that is easy to automatically route leads, escalate service and personalize marketing. This is helpful in prioritizing customer service inquiries. For example,… Continue reading Einstein Intent Analysis Using Einstein Language on Salesforce Chatter

Salesforce · Trigger

Roll-up Summary without a Master Detail Relationship

Roll-up Summary is a feature of salesforce enabled only after having a master detail relationship between objects. Rollup Summary is a feature where, It gives us the options of having SUM, MIN, MAX of a field in all the child records or COUNT the number or child records. This is stored as a field in… Continue reading Roll-up Summary without a Master Detail Relationship