Custom Tab For Lightning Web Components

The post explains the process of using a Lightning Web Component (LWC) in a custom tab in both the Salesforce mobile app and Lightning Experience. This is possible since Winter '20 release by setting "isExposed" to TRUE in the metadata file and adding "lightning__Tab" to target to enable the LWC in the Custom Lightning Component Tab.

Lightning Stateful Button Component

The lightning:buttonStateful represents a toggleable button state similar to those found on social media. It enables dynamic display of different labels and icons. Specific examples and further information can be found on the Lightning Design System and Salesforce Developer websites.

Translate Chatter Feed | Text Translation API

Arun Kumar explains the use of Yandex Translate Text API for translating text content in different languages. This free API blends neural network and statistical approaches for machine translation. The post gives details about the API Request syntax, the query parameters, and showcases example code for translating 'chatter feed'.

Get Parent Record Id From Lightning URL

The post discusses creating a lighting component for a new record related to Opportunity in Salesforce. The challenge is to auto-populate the Opportunity record, but the "force:hasRecordId" interface is insufficient as it only provides the current record ID. The solution given advises using the "lightning:isUrlAddressable" interface to generate a URL and retrieve the Opportunity record ID.

New Salesforce API Explorer

Salesforce API Explorer offers developers a place to test a variety of Salesforce APIs. Now available for developer preview are APIs including B2C Commerce Developer Sandbox, Einstein Prediction Service Scoring, Einstein Vision and Language, Force.com REST sObject Resources, Marketing Cloud REST, and Salesforce IoT.

Salesforce ~ Microsoft Dynamic CRM Integration Part 2

The post discusses integration between Salesforce and Microsoft Dynamic CRM. It details how to fetch opportunities from MS Dynamic CRM to Salesforce by passing an AccessToken to the getOpportunitiesFromMSDynamic() method. The response, in JSON format, can be parsed to suit the user's needs and applied to Salesforce objects.

Salesforce ~ Microsoft Dynamic CRM Integration Part 1

"Microsoft Dynamics 365" is an Enterprise Resource Planning and Customer Relationship Management solution by Microsoft. It includes different application-based solutions. This article outlines steps to integrate a third-party Application Programming Interface with Dynamics 365 for development and data retrieval purposes, using Salesforce APEX code for authentication and access token acquisition.