Many of us eagerly waiting to see some idea's in to product feature's in Salesforce. Now LOOKUP is available for Opportunity Product. Yes, Spring 21 release you can create a Opportunity Product lookup relationship with other objects. For example, Track your opportunity product with custom delivery object.
Category: Spring 21
SPRING 21 – ACCESSING CUSTOM METADATA TYPES RECORDS FROM APEX
In Spring 21 pre release, new methods introduced for Custom Metadata Types as like Custom Settings. Following Methods getAll() - Will return the all records from Custom Metadata Type. Before Spring 21: list<Test_mdt> lstMetaDataRecords = [Select Id, MasterLabel from Test_mdt] In Spring 21: Map<String, Test__mdt> mapMetaDataRecords = Test__mdt.getAll(); list<Test_mdt> lstMetaDataRecords = mapMetaDataRecords.values(); getInstance() - Will… Continue reading SPRING 21 – ACCESSING CUSTOM METADATA TYPES RECORDS FROM APEX
SPRING 21 – CUSTOM ACTION WITH LWC(PILOT)
Many of us doing double work in order to call the Lightning Web Component in custom quick action. We have to call LWC in Lightning Component in order to show the LWC UI in quick action. Now Spring 21 brought way to call the Lightning Web Component from Custom Quick Action but it is not… Continue reading SPRING 21 – CUSTOM ACTION WITH LWC(PILOT)
SPRING 21 – PERSON ACCOUNT AND A BUSINESS ACCOUNT AT THE SAME TIME WITH NEW LEAD CONVERT METHODS
For Salesforce orgs that use APEX Lead Convert, Person Accounts, and Contacts to Multiple Accounts, new methods are available on the LeadConvert() class. These methods allow converting leads into a business account and a person account instead of a contact. Note: This change applies to Lightning Experience in Enterprise, Performance, and Unlimited editions. getRelatedPersonAccountId(): Gets… Continue reading SPRING 21 – PERSON ACCOUNT AND A BUSINESS ACCOUNT AT THE SAME TIME WITH NEW LEAD CONVERT METHODS
SPRING 21 – ANT MIGRATION TOOL
Force.com Ant Migration Tool version 51.0 is requires Java Version 11 and later. Spring 21 Release Note Link: https://help.salesforce.com/articleView?id=release-notes.rn_deployment_ant_migration_java_11.htm&type=5&release=230 ANT Migration Tool Guide: https://developer.salesforce.com/docs/atlas.en-us.daas.meta/daas/meta_development.htm Earlier Ant Migration Tool versions (< 51.0 version) continue to support Java version 7 or later
SPRING 21 – MANUAL SHARING IN LIGHTNING UI
Now the “Sharing” button is now available in Salesforce Lightning UI. Business users will now be able to share a record to a user or group of users as like before in salesforce classic UI.