Posts

Expensive Injection: इस बच्चे को ज़िंदा रहने के लिए चाहिए 17 करोड़ का इं...

Image

Salesforce : Multi-Factor Authentication

Image
Salesforce : Multi-Factor Authentication Evidence that users provide when logging in to confirm their identity.. One factor is something users know. For Salesforce logins, with user credeantial Two factors are verification methods that a user has in their possession, such as a mobile device with an authenticator app installed or a physical security key. How Multi-Factor Authentication Works 1. A user enters their username and password, as usual. 2. A user is prompted to provide one of the verification methods that Salesforce supports.. Salesforce verification methods: Salesforce Authenticator : A free mobile app that integrates seamlessly into your login process from Salesforce Third-party authenticator apps : This code is sometimes called a time-based one-time password, or TOTP for short. Users can pick from a wide variety of options, including Google Authenticator, Microsoft Authenticator, or Authy. Security keys : Small physical tokens that look like...

Salesforce LWC : Compact Layout on Hover

Image
Salesforce LWC : Compact Layout showing on Hover Sometime we have requirement to show Account name link on standard views, a popup with the Compact Layout shows the details of that record. LWC Parent Component : Template (HTML Code) LWC : JS (Process Code) import { LightningElement,api } from 'lwc'; export default class AccountComponent extends LightningElement { @api recordId; @track objRecordId; handleMouseover(event) { console.log(this.recordId); this.objRecordId = null const toolTipDiv = this.template.querySelector('div.ModelTooltip'); toolTipDiv.style.opacity = 1; toolTipDiv.style.display = "block"; // eslint-disable-next-line window.clearTimeout(this.delayTimeout); // esli...

Salesforce LWC With Third Party JS : D3

Image
Salesforce Lightning Web Component With Third Party JS : D3 Third-Party JavaScript Libraries Using JavaScript to manipulate the DOM isn’t recommended because the Lightning Web Components engine does it more efficiently. However, there are some third-party JavaScript libraries that take over the DOM. Manipulate the DOM with JavaScript Using JavaScript to manipulate the DOM isn’t recommended because the Lightning Web Components engine does it more efficiently. However, there are some third-party JavaScript libraries that take over the DOM. If a call to appendChild() manipulates the DOM, styling isn’t applied to the appended element. When using these libraries in a Lightning web component, add lwc:dom="manual" to any HTML element that you want to manipulate with JavaScript. When the engine sees the directive, it preserves encapsulation. Add the lwc:dom="manual" directive to an empty native HTML element. The owner of the component calls appendChild()...

Salesforce : Certification Tip for Online Protected With Coupons/Vouchers

Image
Salesforce : Certification Tip for Online Protected What is an Online Proctored Exam? Salesforce certification exams can be taken remotely, from your own computer, at the comfort of your home. online proctored exam for online proctored is very convenience, flexibility in schedule, and no travel requirements .  Online Proctored Exam Requirements The online proctored exams are taken via Kryterion Sentinel Secure software . Those taking the tests must download the software and create a biometric profile. You must verify your identity before your exam schedule. Review all the requirements before taking an exam to ensure a successful attempt. Any rule violation could be grounds to discontinue your online proctored exam. To guarantee secure examination conditions, your testing area must meet these requirements : 1. Area must be quiet and clear with good amount of visibility for WebCam. 2. Usually, an online proctored exam requires two cam external cameras and built in w...

Salesforce Configuration from Custom Metadata Types

Image
Salesforce Configuration from Custom Metadata Types Custom Metadata Types are a very powerful capability in the Salesforce platform it can in process builder, formulas, and validation rules. I wanted to give some background and examples to help admins understand how it could be used in their orgs. The main advantage to using the custom metadata types is you can add both definition and records in the package or changeset. Advantages to Custom Metadata: 1. You can control the visibility of Custom Metadata Types by specifying it as public or protected. 2. We can create fields like Picklist fields, long text areas also able to do with page layouts, and validation rules. 3. Asynchronous (without using remote site settings) insert/update in Apex via Metadata.MetadataOperations.enqueueDeployment() 4. Custom Metadata have a option for access for edit the records with “Configure Application” but you require “Author Apex” to edit the configuration. 5. Custom metadata is also visi...

Quick Complete Guide : VS Code Extensions

Image
My VS Code Extensions : For Salesforce 1. Quick Metadata Backup (SFMDB) VS Code Extension for Metadata Backup with Single Command in VS Code Command Palette. you can download from Microsoft Marketplace : https://marketplace.visualstudio.com/items?itemName=SanjayRathore.quick-salesforce-metadata-backup 2. Quick Salesforce Apex Class (SFAC) VS Code Extension for Salesforce Apex Classes with Single Command in VS Code Command Palette. you can download from Microsoft Marketplace : https://marketplace.visualstudio.com/items?itemName=SanjayRathore.quick-salesforce-apex-class What are extensions? It's not a secret that VS Code is becoming a very popular choice as editor for many developers.VS Code extensions are awesome, they provide amazing convenience that is limited only by your imagination. One of the most impressive parts of Visual Studio Code is customizability, especially via extensions. If you're a web developer, you won't be able to live w...