instanceof Keyword in Salesforce Apex
Using Salesforce Apex, if you want to verify at run time or dynamically whether an object is actually an instance of a particular class, then we can make use of ....
Using Salesforce Apex, if you want to verify at run time or dynamically whether an object is actually an instance of a particular class, then we can make use of ....
Code Share is a directory of open source code projects covering all aspects of the Force.com Platform. Browse and access the source code for these projects to learn more about ....
CreatedDate field in Salesforce is 1. DateTime field. 2. In before insert trigger, the value will be null. 3. Generated only after successful insertion. 4. Provides the exact date and ....
In the test class, follow the below 1. Create Messaging.InboundEmail. 2. Create Messaging.InboundEnvelope. 3. Pass them to handleInboundEmail() method of Messaging.InboundEmailHandler class. Sample Test Class Code: Messaging.InboundEmail email = new ....
Log Category Description Database Includes information about database activity, including every data manipulation language (DML) statement or inline SOQL or SOSL query. Workflow Includes information for workflow rules, flows, and ....
Use Apex if you want to: 1. Create Web services. 2. Create email services. 3. Perform complex validation over multiple objects. 4. Create complex business processes that are not supported ....
Visualforce is a framework that allows developers to build sophisticated, custom user interfaces that can be hosted natively on the Force.com platform. The Visualforce framework includes a tag-based markup language, ....
Users tab alternative in Salesforce is People Tab. Note: People tab shows only the active users in the organization. For Inactive users, go to Setup --> Manage Users --> Users ....
1. Create a button "Search in LinkedIn" in Contact object. Use "Execute JavaScript" as the Behavior. In OnClick JavaScript, use the following: window.open( 'https://www.linkedin.com/search?lname={!Contact.LastName}&fname={!Contact.FirstName}"); This will allow us the search ....
https://www.infallibletechie.com/2016/05/salesforce-lightning-tutorial.html The best source for Salesforce Lightning Component Study Guide is https://www.salesforce.com/services-training/learnlightning.jsp Note: For examples and practical exposure to Salesforce Lightning Component, kindly search in this site using search option. I have ....