Monday, 8 February 2021

Manual Sharing in Salesforce Lightning Experience

 In Spring 2021, Salesforce announced the SHARING Action Button for Lightning Experience. Previously it was available only for Classic Experience.

Step 1 - Go to the Object's Page Layout from the Lightning Experience.

Step 2 - Click on the "Mobile & Lightning Actions".

Step 3 - Search the "Sharing" Action Button and then drag & drop on the Page Layout.


Thanks for your visit to my Blog. If this post is helpful to you then share and follow to get new coming SFDC4Students blog posts.

SOQL to Get All fields | SOQL to Get Custom Fields with some Standard fields | SOQL to Get Standard Fields with some Custom fields

 In Spring 2021, Salesforce announced a new FIELDS() function in SOQL.

Examples of FIELDS() clause in SOQL

Query All Field at once

1
SELECT FIELDS(ALL) FROM Lead LIMIT 200

Query All STANDARD Standard Fields

1
SELECT FIELDS(STANDARD) FROM Lead

Query All CUSTOM Fields

1
SELECT FIELDS(CUSTOM) FROM Lead LIMIT 200

Mix Standard Fields and FIELDS(CUSTOM)

1
SELECT Email, FIELDS(CUSTOM) FROM Lead LIMIT 200

Mix Custom Fields and FIELDS(STANDARD)

1
SELECT Custom_Field__c, FIELDS(STANDARD) FROM Lead

Thanks for your visit to my Blog. If this post is helpful to you then share and follow to get a new coming SFDC4Students blog posts.

Total Pageviews