View Custom Object Created From Spreadsheet In Salesforce
After creating a custom object from the Google sheet as described in my post Monitor Google Form Responses From Salesforce, you need to view the custom object created from the…
After creating a custom object from the Google sheet as described in my post Monitor Google Form Responses From Salesforce, you need to view the custom object created from the…
Use these Salesforce developer's interview questions and answers to prepare for your interviews1. What is the difference between 15 character IDs and 18 character IDs in salesforce? The 15 character…
To maintain my Administrator certification, I needed to install Spring '21 Administrator package using old playground because I could not create new one having exceeded the expected number . I…
There are use cases when you need to determine index of array in Ansible. If you have an array or list as such array_name = ["cat", "dog", "rabbit", "fish"]. You…
If given an Array with very large size, there use cases where you are required to get the index of an element of the Array using foreach loop in Java.…
There are use cases where you need to get the index of a given element of an Array in Java. To access an array's element use the index number. Use…
It is possible to add and remove styles on Lightning components or element during runtime. To retrieve the class name on a component, use component.find('myCmpId').get('v.class'), where myCmpId is the aura:id attribute value and the class…
In Salesforce creating My Domain is actually creating a subdomain within the Salesforce domain. My Domain showcases your company's brand and keep your data more secure by adding a custom…
Controller Extension A controller extension is an Apex class that extends the functionality of a standard or custom controller. The class constructor takes a single argument of type ApexPages.StandardController or…
To create a Lightning Component, follow these steps: In the Developer Console, choose File | New | Lightning Component.Give the component a name, for example, schoolForm (because I'm using a custom…