Types of relationships,triggers, workflow,data loader.
Salesforce Developer Manager Interview Questions
2,866 salesforce developer manager interview questions shared by candidates
1. OWD, profile, role 2. Process Builder, Workflow 3. Apex trigger scenario 4. REST Integration 5. Aura basics
Q.What is standard controller, custom controller and extension? Standard controller:contain the same functionality and logic that are used for standard Salesforce pages. Custom controller:Custom controllers contain custom logic and data manipulation that can be used by a Visualforce page Custom extension:You want to leverage the built-in functionality of a standard controller but override one or more actions, such as edit, view, save, or delete. Q.What is the scenario when you used custom controller? Suppose you have been asked to display the list of all Account on a visual force page then you will definitely start with Standard controller and using pageBlock table you can simply display all accounts. Now if I say to display list of account having Industry = “Agriculture” and Type = “Customer – Channel”, then you have to think about custom controller where you write SOQL with some filter on Account Q.Can we use custom controller and extension in one vf page? No we cannot Q.Does apex run in system mode or user mode? In Salesforce, all apex code run in system mode. Q.Why to use without sharing when apex is run in system mode? The system mode ignores users permissions. “Without sharing” keyword tells Apex code to ignore sharing rules, but not users permissions. Q.What is data skew? When you have a very large number of child records (more then 10k)associated to the same account in Salesforce, we call that “data skew”. This can cause issues with record locking and sharing performance Q.How to invoke a class using process builder? To call an Apex method, add the Call Apex action to your process and select an Apex class with a @invocable method Annotation Q.Can we have multiple invocalble method in a class? No.More than one invocable method is not allowed per class Can we use list in invocable method? Yes we can use list list of a primitive data type or a list of lists of a primitive data type – the generic Object type is not supported. A list of an sObject type or a list of lists of an sObject type – the generic sObject type is not supported. A list of a user-defined type, containing variables of the supported types and with the InvocableVariable annotation. How to send nightly email using batch apex? We can use Apex Scheduler to schedule a batch to execute it at a given time in future. How to revaluate workflows? Selecting the Re-evaluate Workflow Rules After Field Change checkbox on the Field Update Edit page allows you to set a workflow field update to re-evaluate all workflow rules on the object if the field update results in a change to the value of the field. What is database.stateful? Batch Apex is stateless by default. That means for each execution of your execute method, you receive a fresh copy of your object. All fields of the class are initialized, static and instance. If your batch process needs information that is shared across transactions, one approach is to make the Batch Apex class itself stateful by implementing the Stateful interface.
Triggers Asynchronous Apex Future Methods Testing Practices
Write a single lwc code.
Security model in salesforce platform?
Apex, trigger, batch class, code to resolve errors.
Q1. Tell me about your project in brief? Q2. How is your exposure to Sales Cloud and Service Cloud, how the different Sales Cloud objects interact with each other? Q3. What is the relationship between Lead, Account, Contact & Opportunity in Sales System. Q4.Converting Hospital Lead into Account, there are 4 doctors, Hospital has the customer, you are converting the Hospital Lead, Account, there are 5 other doctors also a lead, so I don't want to lead a doctors because Hospital already accounts, when the first conversion happens, I want to convert the rest of the 4 doctors lead into the system. How would you approach? Q5. There are 100 leads with same domain if you convert one and they are already part of the account. you convert 1 and there are 99 one under the domain name. (Explain with trigger) Lead to contact conversion. Q5. I want to make Dynamic SOQL query in Batch Apex? How do you write that? I dont want to change if query is changing, How do you make it more dynamic. Q6. What is Custom Settings? Q7. What is Custom Method? Q8. What is Future Method? How is it different from Batch Class? Q9. When you got the WSDL then what do you do?
Batch file, trigger limitation, service cloud
1. What is security in salesforce 2. What are profiles and permission sets 3. Write code for simple trigger, rest api etc.
Viewing 1861 - 1870 interview questions