Useful tips for everyday
What are class names for SLDs text sizing? Text sizing uses class names like .slds-text-body_small and .slds-text-heading_large without a base .slds-text-body or .slds-text-heading class. Though…
How is process builder used in visual flow? Process Builder is used to trigger the event, and visual flow prompts a complex business process: we…
What is case comment? The body of a case comment or note comprises of four appendages. These are: Introduction. A case comment ought to in…
How do I get all the elements in a document? HTML DOM querySelectorAll() Method The querySelectorAll() method returns all elements in the document that matches…
How to invoke a wrapper class in a test class? How can I invoke a wrapper class in a test class? objectName.FuntionName ();//to call the…
What can be integrated with Salesforce? Integrate Salesforce with the apps you use every day. G Suite. Streamline your team’s workflow and increase productivity by…
How do you write a test class in Spring Batch? To unit test batch job, declares spring-batch-test. jar , @autowired the JobLauncherTestUtils , launch the…
How are soql queries embedded in Apex code? When SOQL is embedded in Apex, it is referred to as inline SOQL. To include SOQL queries…
How do you pass data from child component to parent in LWC? How to Pass Values From Child to Parent component in LWC Define a…
How to bulkify code by combining soql queries? // Step 3: Associate each record with the correct query result for ( Case newCase : Trigger.new)…