DocuSign Template with Salesforce field mapping
DevFacts
by Kumaresan
7h ago
Introduction: DocuSign adapted with Salesforce to create, send, and track agreements or documents for signature. Here, we can include static and dynamic data from our Salesforce CRM. Let us see how we can connect the Salesforce field in our document. Here, you can check the initial steps to setup the DocuSign in salesforce DocuSign Merge Field Merge fields are DocuSign custom tags that are integrated with Salesforce objects. It may be a custom or standard object. When a custom tag with merge field settings is added to a document, the Salesforce data is imported into the tag. In addition to pul ..read more
Visit website
Salesforce Lightning UI Best Practice with SLDS
DevFacts
by Kumaresan
7M ago
   Introduction  In Salesforce we can customize the UI with the help of salesforce declarative approach and Aura / LWC (Lightning Web Components) components. Also, on top of that we are using SLDS for rich UI.  Why SLDS?  In custom UI development, SLDS provides Ready-to-use HTML and CSS (Cascading Style Sheets) UI elements for Salesforce experience.  Design Principles   During the front-end development, we need to focus following areas   Clarity – Enable people to see, understand, and act with confidence.  Efficiency – Intelligently anti ..read more
Visit website
Top Salesforce Apex Interview Questions and Answers
DevFacts
by Kumaresan
8M ago
1. What is Apex? Apex is a programming language developed by Salesforce for writing custom code on the Salesforce platform. 2. Different types of collections in Apex? Apex supports three types of collections: Lists, Sets, and Maps. 3. Tell me the difference between a List and a Set in Apex? A List is an ordered collection that can contain duplicate values, while a Set is an unordered collection that does not allow duplicate values. 4. What is a trigger in Apex? A trigger is an Apex script that runs before or after specific data manipulation language (DML) events, like insert, update, delete, e ..read more
Visit website
Learn LWC and It’s Best Practices
DevFacts
by Kumaresan
8M ago
Hi there, here you can learn What is LWC How LWC works? Its best practices The post Learn LWC and It’s Best Practices appeared first on DevFacts | Tech Blog | Developer Community | Developer Facts ..read more
Visit website
Learn Nonprofit Success Pack (NPSP) – Salesforce AppExchange
DevFacts
by Kumaresan
10M ago
Hello there, Check this video to get the full details about NPSP Reference: https://trailhead.salesforce.com/content/learn/modules/nonprofit-success-pack-administration-basics/understand-the-npsp-data-model https://help.salesforce.com/s/articleView?id=000384825&type=1 The post Learn Nonprofit Success Pack (NPSP) – Salesforce AppExchange appeared first on DevFacts | Tech Blog | Developer Community | Developer Facts ..read more
Visit website
Top Salesforce admin interview questions
DevFacts
by Kumaresan
1y ago
Hey, Here listed some important admin concepts for your interview preparation. Cover all admin interview questions. It will take some time but you can crack your technical interview. 1. How Salesforce works? Salesforce is a cloud-based Customer Relationship Management (CRM) platform that helps businesses manage their customer interactions, sales, marketing, and customer service operations. Salesforce works by maintaining all customer and business data in the cloud database, which means that users can access this data from anywhere, any time, on any device, as long as they have an internet con ..read more
Visit website
How to access the All Internal Users folder in the apex
DevFacts
by Kumaresan
1y ago
To access the “All Internal Users” folder in Apex, you can use the Salesforce standard object CollaborationGroup. This object represents the folder, and you can query it using the Apex code to retrieve the folder and its contents. You can also use the SOQL query to filter the results based on specific criteria, such as name, type, or owner. Example: List<CollaborationGroup> folderList = [SELECT Id, Name, CollaborationType, OwnerId FROM CollaborationGroup WHERE CollaborationType = 'Files']; This query will return all the folders of type “Files”, and you can access their properties such ..read more
Visit website
Un assign the permission set with the help of the apex trigger for the user
DevFacts
by Kumaresan
1y ago
Here’s an example of how you could unassign a permission set from a user using an Apex trigger: trigger UnassignPermissionSet on User (before update) { List<PermissionSetAssignment> psaList = [SELECT Id, PermissionSetId, AssigneeId FROM PermissionSetAssignment WHERE AssigneeId = :Trigger.Old[0].Id]; if (!psaList.isEmpty()) { delete psaList; } } In this trigger, we first retrieve a list of all the PermissionSetAssignment records that are associated with the user being updated. If the list is not empty, meaning there are permission sets assigned to the user, then we d ..read more
Visit website
Salesforce SLDS Grid Example
DevFacts
by Kumaresan
1y ago
The Salesforce Lightning Design System (SLDS) includes a flexible grid system that can be used to create responsive layouts for webpages and applications. Here is an example of how the grid system can be used to create a three-column layout for a webpage: <div > <div > <!-- Content for first column goes here --> </div> <div > <!-- Content for second column goes here --> </div> <div > <!-- Content for third column goes here --> </div> </div> In this example, the slds-grid class is ..read more
Visit website
Custom Hero / Image Banner LWC Component in LWC
DevFacts
by Kumaresan
1y ago
A “hero / Image Banner” component in Lightning Web Components (LWC) is a custom element that can be used to display important information or content on a page. It typically includes a large image or visual element, a headline, and some supporting text or information. The exact design and functionality of a hero component will depend on the specific implementation and requirements of your project. Here’s an example of a basic hero component in Lightning Web Components (LWC): <template> <div > <img src={imageUrl} alt="Hero Image" /> <h1>{title}</h1 ..read more
Visit website

Follow DevFacts on FeedSpot

Continue with Google
Continue with Apple
OR